1234567891011121314151617 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public interface IGPSTrackerType : IEntity
- {
- string Description { get; set; }
-
- GPSTrackerPowerTypeLink Power { get; set; }
-
- string? BatteryFormula { get; set; }
-
- GPSTrackerConnectivityTypeLink Connectivity { get; set; }
-
- GPSTrackerLocationTypeLink LocationType { get; set; }
- }
- }
|