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