| 12345678910111213141516171819 |
- using System;
- using System.Linq;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class KanbanFormModel : DigitalFormInstanceModel<KanbanFormModel, KanbanFormShell, KanbanForm>
- {
- public KanbanFormModel(IModelHost host, Func<Filter<KanbanForm>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
- public IDigitalFormInstanceShell[] Forms => Items.OfType<IDigitalFormInstanceShell>().ToArray();
- }
- }
|