123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using Admin.Core.Model.Admin;
- namespace Admin.Core.Service.Admin.Document.Output
- {
- public class DocumentListOutput
- {
-
-
-
- public long Id { get; set; }
-
-
-
- public int ParentId { get; set; }
-
-
-
- public string Label { get; set; }
-
-
-
- public DocumentType Type { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public bool? Opened { get; set; }
- }
- }
|