using InABox.Core; namespace Comal.Classes { public interface IDeliveryType { string Description { get; set; } } public class DeliveryType : Entity, IPersistent, IRemotable, IDeliveryType, ILicense, IExportable, IImportable { [EditorSequence(1)] [TextBoxEditor] public string Description { get; set; } } }