34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BodyshopUploader.ViewModels
|
|
{
|
|
public partial class MainViewModel : BaseViewModel
|
|
{
|
|
private int _progress = 5;
|
|
public int Progress
|
|
{
|
|
get { return _progress; }
|
|
set { SetProperty(ref _progress, value); }
|
|
}
|
|
|
|
private ObservableCollection<Utils.CIECAMonitor> _folderMonitors = new ObservableCollection<Utils.CIECAMonitor>() ;
|
|
public ObservableCollection<Utils.CIECAMonitor> FolderMonitors
|
|
{
|
|
get { return _folderMonitors; }
|
|
set { SetProperty(ref _folderMonitors, value); }
|
|
}
|
|
|
|
private ObservableCollection<string> _monitoringPaths = Properties.Settings.Default.MonitoringPaths ;
|
|
public ObservableCollection<string> MonitoringPaths
|
|
{
|
|
get { return _monitoringPaths; }
|
|
set { SetProperty(ref _monitoringPaths, value); }
|
|
}
|
|
}
|
|
}
|