using System; using Comal.Classes; using InABox.Core; using System.Diagnostics.CodeAnalysis; namespace comal.timesheets { public class KanbanDetailModel : DetailModel { public KanbanDetailModel(IModelHost host, Func> filter, bool transient = false) : base(host, filter, transient) { } public KanbanDetailModel(IModelHost host, Func> filter, [NotNull] string filename) : base(host, filter, filename) { } } }