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