KanbanDetailShell.cs 315 B

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