You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace CNAS_SyncService
- {
- public class FileWatcherItem
- {
- /// <summary>
- /// 监控同步项唯一标识
- /// </summary>
- public string SyncItemId { get; set; }
-
- /// <summary>
- /// 监控同步项的来源数据库是文件?文件夹?
- /// </summary>
- public string SyncFileOrFolder { get; set; }
-
- /// <summary>
- /// 监控同步项的文件/文件夹路径
- /// </summary>
- public string SyncPath { get; set; }
-
- /// <summary>
- /// 监控同步项的来源数据库是否是本地?【远程文件不能使用监控】
- /// </summary>
- public bool SyncIfLocal { get; set; }
-
- /// <summary>
- /// 监控同步项是否发生了变化
- /// </summary>
- public bool SyncIfChanged { get; set; }
- }
- }
|