using System; using Comal.Classes; using InABox.Core; using System.Diagnostics.CodeAnalysis; namespace comal.timesheets { public class BluetoothGateModel : ListModel { public BluetoothGateModel(IModelHost host, Func> filter, bool transient = false) : base((IModelHost)host, filter, transient) { new BluetoothGateShell(); } public BluetoothGateModel(IModelHost host, Func> filter, [NotNull] string filename) : base((IModelHost)host, filter, filename) { new BluetoothGateShell(); } // public override Columns<(.+)> Columns => BluetoothGateShell.Columns.Columns; } }