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; } } }