aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/GuideInfo.cs
blob: 1303c278eadb6041eff5607b9f095bfe4b4ab18f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

namespace MediaBrowser.Model.LiveTv
{
    public class GuideInfo
    {
        /// <summary>
        /// Gets or sets the start date.
        /// </summary>
        /// <value>The start date.</value>
        public DateTime StartDate { get; set; }

        /// <summary>
        /// Gets or sets the end date.
        /// </summary>
        /// <value>The end date.</value>
        public DateTime EndDate { get; set; }
    }
}