24 lines
668 B
C#
24 lines
668 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BodyshopUploader.Utils.Growls;
|
|
using BodyshopUploader.Models;
|
|
|
|
namespace BodyshopUploader.ViewModels
|
|
{
|
|
public partial class MainViewModel : BaseViewModel
|
|
{
|
|
public GrowlNotification Growler;
|
|
|
|
private ObservableCollection<Monitor> _monitoringPaths = new ObservableCollection<Monitor>();
|
|
public ObservableCollection<Monitor> MonitoringPaths
|
|
{
|
|
get { return _monitoringPaths; }
|
|
set { SetProperty(ref _monitoringPaths, value); }
|
|
}
|
|
}
|
|
}
|