| 123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(Delivery))]
- public class DeliveryNotification : Entity, IPersistent, IRemotable, ILicense<LogisticsLicense>
- {
- public DeliveryLink Delivery { get; set; }
- public Location Location { get; set; }
- }
- }
|