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 { public DeliveryLink Delivery { get; set; } public Location Location { get; set; } } }