1234567891011121314151617181920212223 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class GPSTrackerTypeLink : EntityLink<GPSTrackerType>, IGPSTrackerType
- {
- [PopupEditor(typeof(GPSTrackerType), CanAdd = true)]
- public override Guid ID { get; set; }
-
- [TextBoxEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- public string Description { get; set; }
-
- public GPSTrackerPowerTypeLink Power { get; set; }
-
- public string? BatteryFormula { get; set; }
-
- public GPSTrackerConnectivityTypeLink Connectivity { get; set; }
-
- public GPSTrackerLocationTypeLink LocationType { get; set; }
- }
- }
|