GuideInfo.cs 475 B

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