12345678910111213141516 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class DeliveryTypeLink : EntityLink<DeliveryType>, IDeliveryType
- {
- [EditorSequence(1)]
- [LookupEditor(typeof(DeliveryType))]
- public override Guid ID { get; set; }
- [EditorSequence(2)]
- [TextBoxEditor(Editable = Editable.Hidden)]
- public string Description { get; set; }
- }
- }
|