| 1234567891011121314151617 | using System;using InABox.Core;namespace Comal.Classes{    public class ShipmentLink : EntityLink<Shipment>    {        [LookupEditor(typeof(Shipment))]        public override Guid ID { get; set; }        [TextBoxEditor(Editable = Editable.Hidden)]        public string Code { get; set; }        [TextBoxEditor(Editable = Editable.Hidden)]        public string Description { get; set; }    }}
 |