IGPSTrackerType.cs 412 B

1234567891011121314151617
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface IGPSTrackerType : IEntity
  5. {
  6. string Description { get; set; }
  7. GPSTrackerPowerTypeLink Power { get; set; }
  8. string? BatteryFormula { get; set; }
  9. GPSTrackerConnectivityTypeLink Connectivity { get; set; }
  10. GPSTrackerLocationTypeLink LocationType { get; set; }
  11. }
  12. }