CNAS取数仪器端升级
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.

преди 4 месеца
1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CNAS_SyncService
  6. {
  7. public class FileWatcherItem
  8. {
  9. /// <summary>
  10. /// 监控同步项唯一标识
  11. /// </summary>
  12. public string SyncItemId { get; set; }
  13. /// <summary>
  14. /// 监控同步项的来源数据库是文件?文件夹?
  15. /// </summary>
  16. public string SyncFileOrFolder { get; set; }
  17. /// <summary>
  18. /// 监控同步项的文件/文件夹路径
  19. /// </summary>
  20. public string SyncPath { get; set; }
  21. /// <summary>
  22. /// 监控同步项的来源数据库是否是本地?【远程文件不能使用监控】
  23. /// </summary>
  24. public bool SyncIfLocal { get; set; }
  25. /// <summary>
  26. /// 监控同步项是否发生了变化
  27. /// </summary>
  28. public bool SyncIfChanged { get; set; }
  29. }
  30. }