ConsignmentParcel.cs 438 B

12345678910111213141516171819
  1. using System;
  2. using System.Linq.Expressions;
  3. using InABox.Core;
  4. namespace Comal.Classes
  5. {
  6. [UserTracking(typeof(Delivery))]
  7. public class ConsignmentParcel :Entity, IRemotable, IPersistent, ILicense<LogisticsLicense>
  8. {
  9. [NullEditor]
  10. public ConsignmentLink Consignment { get; set; }
  11. [TextBoxEditor]
  12. [EditorSequence(1)]
  13. public string Description { get; set; }
  14. }
  15. }