SupporterInfo.cs 449 B

123456789101112131415
  1. using System;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. public class SupporterInfo
  5. {
  6. public string Email { get; set; }
  7. public string SupporterKey { get; set; }
  8. public DateTime? ExpirationDate { get; set; }
  9. public DateTime RegistrationDate { get; set; }
  10. public string PlanType { get; set; }
  11. public bool IsActiveSupporter { get; set; }
  12. public bool IsExpiredSupporter { get; set; }
  13. }
  14. }