using InABox.Core; using PRSServer.Forms.DatabaseLicense; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PRSServer { public class LicenseRenewal : BaseObject { public CompanyInformation Company { get; set; } = new CompanyInformation(); public LicenseData? OldLicense { get; set; } public DateTime DateRenewed { get; set; } public DateTime NewExpiry { get; set; } public LicenseTrackingItem[]? LicenseTracking { get; set; } public double Gross{ get; set; } public double Discount { get; set; } public double Net { get; set; } public string TransactionID { get; set; } = ""; } }