KanbanDetailFormShell.cs 303 B

12345678910111213141516
  1. using System;
  2. using Comal.Classes;
  3. namespace comal.timesheets
  4. {
  5. public class KanbanDetailFormShell : Shell<KanbanDetailModel,KanbanForm>
  6. {
  7. static KanbanDetailFormShell()
  8. {
  9. Columns.Map(nameof(ID), x => x.ID);
  10. }
  11. public Guid ID => Get<Guid>();
  12. }
  13. }