aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/GuideInfo.cs
blob: e0d4d8326798bc2e64ba8632068f840d0140f132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma warning disable CS1591
#pragma warning disable SA1600

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; }
    }
}