1234567891011121314151617 |
- using System;
- using Comal.Classes;
- namespace comal.timesheets
- {
- public class KanbanDetailShell : DetailShell<KanbanDetailModel, Kanban>
- {
- static KanbanDetailShell()
- {
- Columns
- .Map(nameof(ID), x => x.ID);
- }
- public Guid ID => Get<Guid>();
- }
- }
|