SuppporterInfoResponse.cs 431 B

1234567891011121314
  1. 
  2. namespace MediaBrowser.Common.Implementations.Security
  3. {
  4. internal class SuppporterInfoResponse
  5. {
  6. public string email { get; set; }
  7. public string supporterKey { get; set; }
  8. public int totalRegs { get; set; }
  9. public int totalMachines { get; set; }
  10. public string expDate { get; set; }
  11. public string regDate { get; set; }
  12. public string planType { get; set; }
  13. }
  14. }