DeliveryType.cs 384 B

12345678910111213141516
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface IDeliveryType
  5. {
  6. string Description { get; set; }
  7. }
  8. public class DeliveryType : Entity, IPersistent, IRemotable, IDeliveryType, ILicense<LogisticsLicense>, IExportable, IImportable
  9. {
  10. [EditorSequence(1)]
  11. [TextBoxEditor]
  12. public string Description { get; set; }
  13. }
  14. }