| 1234567891011121314151617181920 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- namespace comal.timesheets
- {
- public class NotificationModel : ListModel<NotificationModel, NotificationShell, Notification>
- {
- public NotificationModel(IModelHost host, Func<Filter<Notification>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public NotificationModel(IModelHost host, Func<Filter<Notification>> filter, [NotNull] String filename) : base(host, filter, filename)
- {
- }
-
- // public override Columns<(.+)> Columns => NotificationShell.Columns.Columns;
- }
- }
|