GPSTrackerTypeLink.cs 692 B

1234567891011121314151617181920212223
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class GPSTrackerTypeLink : EntityLink<GPSTrackerType>, IGPSTrackerType
  6. {
  7. [PopupEditor(typeof(GPSTrackerType), CanAdd = true)]
  8. public override Guid ID { get; set; }
  9. [TextBoxEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
  10. public string Description { get; set; }
  11. public GPSTrackerPowerTypeLink Power { get; set; }
  12. public string? BatteryFormula { get; set; }
  13. public GPSTrackerConnectivityTypeLink Connectivity { get; set; }
  14. public GPSTrackerLocationTypeLink LocationType { get; set; }
  15. }
  16. }