DocumentItem.cs 452 B

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