using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CNAS_SyncService { public class FileWatcherItem { /// /// 监控同步项唯一标识 /// public string SyncItemId { get; set; } /// /// 监控同步项的来源数据库是文件?文件夹? /// public string SyncFileOrFolder { get; set; } /// /// 监控同步项的文件/文件夹路径 /// public string SyncPath { get; set; } /// /// 监控同步项的来源数据库是否是本地?【远程文件不能使用监控】 /// public bool SyncIfLocal { get; set; } /// /// 监控同步项是否发生了变化 /// public bool SyncIfChanged { get; set; } } }