DeliveryTypeLink.cs 400 B

12345678910111213141516
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class DeliveryTypeLink : EntityLink<DeliveryType>, IDeliveryType
  6. {
  7. [EditorSequence(1)]
  8. [LookupEditor(typeof(DeliveryType))]
  9. public override Guid ID { get; set; }
  10. [EditorSequence(2)]
  11. [TextBoxEditor(Editable = Editable.Hidden)]
  12. public string Description { get; set; }
  13. }
  14. }