DeliveryNotification.cs 363 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using InABox.Core;
  5. namespace Comal.Classes
  6. {
  7. [UserTracking(typeof(Delivery))]
  8. public class DeliveryNotification : Entity, IPersistent, IRemotable, ILicense<LogisticsLicense>
  9. {
  10. public DeliveryLink Delivery { get; set; }
  11. public Location Location { get; set; }
  12. }
  13. }