ConnectAuthorization.cs 590 B

1234567891011121314151617181920
  1. 
  2. namespace MediaBrowser.Model.Connect
  3. {
  4. public class ConnectAuthorization
  5. {
  6. public string ConnectUserId { get; set; }
  7. public string UserName { get; set; }
  8. public string ImageUrl { get; set; }
  9. public string Id { get; set; }
  10. public string[] ExcludedLibraries { get; set; }
  11. public bool EnableLiveTv { get; set; }
  12. public string[] ExcludedChannels { get; set; }
  13. public ConnectAuthorization()
  14. {
  15. ExcludedLibraries = new string[] { };
  16. ExcludedChannels = new string[] { };
  17. }
  18. }
  19. }