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