NotificationModel.cs 440 B

123456789101112131415
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. using System.Diagnostics.CodeAnalysis;
  5. using InABox.Mobile;
  6. namespace PRS.Mobile
  7. {
  8. public class NotificationModel : CoreRepository<NotificationModel, NotificationShell, Notification>
  9. {
  10. public NotificationModel(IModelHost host, Func<Filter<Notification>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  11. {
  12. }
  13. }
  14. }