using System; using System.Linq; using Comal.Classes; using InABox.Core; using System.Diagnostics.CodeAnalysis; namespace PRS.Mobile { public class KanbanFormModel : ListModel { public KanbanFormModel(IModelHost host, Func> filter, bool transient = false) : base(host, filter, transient) { } public KanbanFormModel(IModelHost host, Func> filter, [NotNull] string filename) : base(host, filter, filename) { } public IDigitalFormInstanceShell[] Forms => Items.OfType().ToArray(); } }