12345678910111213141516171819 |
- using System;
- using System.Linq.Expressions;
- using InABox.Core;
- namespace Comal.Classes
- {
-
- [UserTracking(typeof(Delivery))]
- public class ConsignmentParcel :Entity, IRemotable, IPersistent, ILicense<LogisticsLicense>
- {
- [NullEditor]
- public ConsignmentLink Consignment { get; set; }
-
- [TextBoxEditor]
- [EditorSequence(1)]
- public string Description { get; set; }
-
- }
- }
|