12345678910111213141516171819202122232425 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class ShipmentLink : EntityLink<Shipment>
- {
- public ShipmentLink()
- {
- }
- public ShipmentLink(Func<BaseObject>? parent) : base(parent)
- {
- }
- [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; }
- }
- }
|