aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Channels/ChannelInfo.cs
blob: 2f1614b066cd02cbc1c1965df4a1ea002a6dc162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#pragma warning disable CS1591
#pragma warning disable SA1600

namespace MediaBrowser.Model.Channels
{
    public class ChannelInfo
    {
        /// <summary>
        /// Gets or sets the name.
        /// </summary>
        /// <value>The name.</value>
        public string Name { get; set; }

        /// <summary>
        /// Gets or sets the identifier.
        /// </summary>
        /// <value>The identifier.</value>
        public string Id { get; set; }

        /// <summary>
        /// Gets or sets the home page URL.
        /// </summary>
        /// <value>The home page URL.</value>
        public string HomePageUrl { get; set; }

        /// <summary>
        /// Gets or sets the features.
        /// </summary>
        /// <value>The features.</value>
        public ChannelFeatures Features { get; set; }
    }
}