NotificationModel.cs 656 B

1234567891011121314151617181920
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. using System.Diagnostics.CodeAnalysis;
  5. namespace comal.timesheets
  6. {
  7. public class NotificationModel : ListModel<NotificationModel, NotificationShell, Notification>
  8. {
  9. public NotificationModel(IModelHost host, Func<Filter<Notification>> filter, bool transient = false) : base(host, filter, transient)
  10. {
  11. }
  12. public NotificationModel(IModelHost host, Func<Filter<Notification>> filter, [NotNull] String filename) : base(host, filter, filename)
  13. {
  14. }
  15. // public override Columns<(.+)> Columns => NotificationShell.Columns.Columns;
  16. }
  17. }