GuideInfo.cs 493 B

12345678910111213141516171819202122
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. namespace MediaBrowser.Model.LiveTv
  5. {
  6. public class GuideInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the start date.
  10. /// </summary>
  11. /// <value>The start date.</value>
  12. public DateTime StartDate { get; set; }
  13. /// <summary>
  14. /// Gets or sets the end date.
  15. /// </summary>
  16. /// <value>The end date.</value>
  17. public DateTime EndDate { get; set; }
  18. }
  19. }