| 1234567891011121314151617181920 |
- using System;
- using Comal.Classes;
- namespace comal.timesheets
- {
- public class JobDocumentSetFolderShell : Shell<JobDetailModel, JobDocumentSetFolder>
- {
- static JobDocumentSetFolderShell()
- {
- Columns
- .Map(nameof(ID), x => x.ID)
- .Map(nameof(ParentID), x => x.Parent.ID)
- .Map(nameof(Name), x => x.Name);
- }
- public Guid ID => Get<Guid>();
- public Guid ParentID => Get<Guid>();
- public String Name => Get<String>();
- }
- }
|