ProgramInfo.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using System;
  2. namespace MediaBrowser.Model.LiveTv
  3. {
  4. public class ProgramInfo
  5. {
  6. /// <summary>
  7. /// Id of the program.
  8. /// </summary>
  9. public string Id { get; set; }
  10. /// <summary>
  11. /// Gets or sets the channel identifier.
  12. /// </summary>
  13. /// <value>The channel identifier.</value>
  14. public string ChannelId { get; set; }
  15. /// <summary>
  16. /// Gets or sets the name of the service.
  17. /// </summary>
  18. /// <value>The name of the service.</value>
  19. public string ServiceName { get; set; }
  20. /// <summary>
  21. /// Gets or sets the external channel identifier.
  22. /// </summary>
  23. /// <value>The external channel identifier.</value>
  24. public string ExternalChannelId { get; set; }
  25. /// <summary>
  26. /// Name of the program
  27. /// </summary>
  28. public string Name { get; set; }
  29. /// <summary>
  30. /// Description of the progam.
  31. /// </summary>
  32. public string Description { get; set; }
  33. /// <summary>
  34. /// The start date of the program, in UTC.
  35. /// </summary>
  36. public DateTime StartDate { get; set; }
  37. /// <summary>
  38. /// The end date of the program, in UTC.
  39. /// </summary>
  40. public DateTime EndDate { get; set; }
  41. /// <summary>
  42. /// Genre of the program.
  43. /// </summary>
  44. public string Genre { get; set; }
  45. }
  46. }