DocumentModel.cs 387 B

123456789101112131415
  1. using System;
  2. using InABox.Core;
  3. using InABox.Mobile;
  4. using Xamarin.Essentials;
  5. namespace PRS.Mobile
  6. {
  7. public class DocumentModel : CoreRepository<DocumentModel, DocumentShell, Document>
  8. {
  9. public DocumentModel(IModelHost host, Func<Filter<Document>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  10. {
  11. }
  12. }
  13. }