12345678910111213141516 |
- using System;
- using Comal.Classes;
- namespace comal.timesheets
- {
- public class KanbanDetailFormShell : Shell<KanbanDetailModel,KanbanForm>
- {
- static KanbanDetailFormShell()
- {
- Columns.Map(nameof(ID), x => x.ID);
- }
- public Guid ID => Get<Guid>();
- }
- }
|