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.
jellyfin/MediaBrowser.Model/Connect/ConnectAuthorizationRequest.cs

19 lines
523 B

10 years ago

namespace MediaBrowser.Model.Connect
{
public class ConnectAuthorizationRequest
{
public string SendingUserId { get; set; }
public string ConnectUserName { get; set; }
10 years ago
public string[] EnabledLibraries { get; set; }
10 years ago
public bool EnableLiveTv { get; set; }
public string[] EnabledChannels { get; set; }
10 years ago
public ConnectAuthorizationRequest()
{
10 years ago
EnabledLibraries = new string[] { };
EnabledChannels = new string[] { };
10 years ago
}
}
}