| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class KanbanModel : BaseKanbanModel<KanbanModel, KanbanShell>
- {
- public KanbanModel(IModelHost host, Func<Filter<Kanban>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
-
- }
- }
|