| 123456789101112131415 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class NotificationModel : CoreRepository<NotificationModel, NotificationShell, Notification>
- {
- public NotificationModel(IModelHost host, Func<Filter<Notification>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
- }
- }
|