ShipmentLink.cs 552 B

12345678910111213141516171819202122232425
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class ShipmentLink : EntityLink<Shipment>
  6. {
  7. public ShipmentLink()
  8. {
  9. }
  10. public ShipmentLink(Func<BaseObject>? parent) : base(parent)
  11. {
  12. }
  13. [LookupEditor(typeof(Shipment))]
  14. public override Guid ID { get; set; }
  15. [TextBoxEditor(Editable = Editable.Hidden)]
  16. public string Code { get; set; }
  17. [TextBoxEditor(Editable = Editable.Hidden)]
  18. public string Description { get; set; }
  19. }
  20. }