GuideInfo.cs 443 B

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