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; } } }