KanbanModel.cs 440 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using Comal.Classes;
  4. using InABox.Core;
  5. using System.Diagnostics.CodeAnalysis;
  6. using InABox.Mobile;
  7. namespace PRS.Mobile
  8. {
  9. public class KanbanModel : BaseKanbanModel<KanbanModel, KanbanShell>
  10. {
  11. public KanbanModel(IModelHost host, Func<Filter<Kanban>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  12. {
  13. }
  14. }
  15. }