| 1234567891011121314151617181920212223242526 | using System;namespace InABox.Core{    public class LicenseData : BaseObject    {        public DateTime LastRenewal { get; set; }        /// <summary>        /// The date when this license can next be renewed.        /// </summary>        public DateTime RenewalAvailable { get; set; }        public DateTime Expiry { get; set; }        public Guid CustomerID { get; set; }        public Guid[] UserTrackingItems { get; set; } = Array.Empty<Guid>();    }    public class License : Entity, IPersistent, IRemotable, ILicense<CoreLicense>    {        [NullEditor]        public string Data { get; set; } = "";    }}
 |