using System; using InABox.Core; namespace Comal.Classes { public class GPSTrackerTypeLink : EntityLink, 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; } } }