| 123456789101112131415161718192021 |
- using BO.AppServer.Metadata.Enums;
- namespace BO.Console.Commands.Workspace.Sync.Diff
- {
- internal class DocumentItem
- {
- public bool IsLocal { get; set; }
- public long? DocId { get; set; }
- public string DocName { get; set; }
- public long? ArtId { get; set; }
- public string ArtName { get; set; }
- public string ArtExt { get; set; }
- public long ArtLength { get; set; }
- public string PhysicalPath { get; set; }
- public ArtifactTypeEnum ArtType { get; set; }
- }
- }
|