BluetoothGateModel.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 BluetoothGateModel : CoreRepository<BluetoothGateModel, BluetoothGateShell, JobTracker>
  9. {
  10. public BluetoothGateModel(IModelHost host, Func<Filter<JobTracker>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  11. {
  12. }
  13. }
  14. }