aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Connect/ConnectAuthorizationRequest.cs
blob: d40d353f01d5350cdc11101d67ce36c4c3035059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.Connect
{
    public class ConnectAuthorizationRequest
    {
        public string SendingUserId { get; set; }
        public string ConnectUserName { get; set; }
        public string[] ExcludedLibraries { get; set; }
        public bool EnableLiveTv { get; set; }
        public string[] ExcludedChannels { get; set; }

        public ConnectAuthorizationRequest()
        {
            ExcludedLibraries = new string[] { };
            ExcludedChannels = new string[] { };
        }
    }
}