DocumentItem.cs 543 B

123456789101112131415161718192021
  1. using BO.AppServer.Metadata.Enums;
  2. namespace BO.Console.Commands.Workspace.Sync.Diff
  3. {
  4. internal class DocumentItem
  5. {
  6. public bool IsLocal { get; set; }
  7. public long? DocId { get; set; }
  8. public string DocName { get; set; }
  9. public long? ArtId { get; set; }
  10. public string ArtName { get; set; }
  11. public string ArtExt { get; set; }
  12. public long ArtLength { get; set; }
  13. public string PhysicalPath { get; set; }
  14. public ArtifactTypeEnum ArtType { get; set; }
  15. }
  16. }