You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
527 B
19 lines
527 B
|
|
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[] { };
|
|
}
|
|
}
|
|
}
|