ChannelInfoDto.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using System;
  2. using MediaBrowser.Model.Dto;
  3. namespace MediaBrowser.Model.LiveTv
  4. {
  5. /// <summary>
  6. /// Class ChannelInfoDto
  7. /// </summary>
  8. public class ChannelInfoDto
  9. {
  10. /// <summary>
  11. /// Gets or sets the name.
  12. /// </summary>
  13. /// <value>The name.</value>
  14. public string Name { get; set; }
  15. /// <summary>
  16. /// Gets or sets the identifier.
  17. /// </summary>
  18. /// <value>The identifier.</value>
  19. public string Id { get; set; }
  20. /// <summary>
  21. /// Gets or sets the logo image tag.
  22. /// </summary>
  23. /// <value>The logo image tag.</value>
  24. public Guid? PrimaryImageTag { get; set; }
  25. /// <summary>
  26. /// Gets or sets the number.
  27. /// </summary>
  28. /// <value>The number.</value>
  29. public string Number { get; set; }
  30. /// <summary>
  31. /// Gets or sets the name of the service.
  32. /// </summary>
  33. /// <value>The name of the service.</value>
  34. public string ServiceName { get; set; }
  35. /// <summary>
  36. /// Gets or sets the type of the channel.
  37. /// </summary>
  38. /// <value>The type of the channel.</value>
  39. public ChannelType ChannelType { get; set; }
  40. /// <summary>
  41. /// Gets or sets the type.
  42. /// </summary>
  43. /// <value>The type.</value>
  44. public string Type { get; set; }
  45. /// <summary>
  46. /// Gets or sets the type of the media.
  47. /// </summary>
  48. /// <value>The type of the media.</value>
  49. public string MediaType { get; set; }
  50. /// <summary>
  51. /// Gets or sets the user data.
  52. /// </summary>
  53. /// <value>The user data.</value>
  54. public UserItemDataDto UserData { get; set; }
  55. }
  56. }