NotificationModel.cs 380 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): base(host, filter)
  11. {
  12. }
  13. }
  14. }