27 lines
741 B
C#
27 lines
741 B
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<string> _monitoringPaths = Properties.Settings.Default.MonitoringPaths ;
|
|
public ObservableCollection<string> MonitoringPaths
|
|
{
|
|
get { return _monitoringPaths; }
|
|
set { SetProperty(ref _monitoringPaths, value); }
|
|
}
|
|
}
|
|
}
|