LicenseRenewal.cs 712 B

12345678910111213141516171819202122232425262728
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PRS.Shared
  8. {
  9. public class LicenseRenewal : BaseObject
  10. {
  11. public CompanyInformation Company { get; set; } = new CompanyInformation();
  12. public LicenseData? OldLicense { get; set; }
  13. public DateTime DateRenewed { get; set; }
  14. public DateTime NewExpiry { get; set; }
  15. public LicenseTrackingItem[]? LicenseTracking { get; set; }
  16. public double Gross{ get; set; }
  17. public double Discount { get; set; }
  18. public double Net { get; set; }
  19. public string TransactionID { get; set; } = "";
  20. }
  21. }