using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class EquipmentFuelType : Entity, IRemotable, IPersistent, ILicense { [UniqueCodeEditor] public string Code { get; set; } = ""; public string Description { get; set; } = ""; static EquipmentFuelType() { DefaultColumns.Add(x => x.Code); DefaultColumns.Add(x => x.Description); } } public class EquipmentFuelTypeLink : EntityLink { [CodePopupEditor(typeof(EquipmentFuelType))] public override Guid ID { get; set; } public string Code { get; set; } = ""; public string Description { get; set; } = ""; } }