mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
19 lines
535 B
C#
19 lines
535 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Model.Connect
|
|
{
|
|
public class ConnectAuthorizationRequest
|
|
{
|
|
public string SendingUserId { get; set; }
|
|
public string ConnectUserName { get; set; }
|
|
public string[] EnabledLibraries { get; set; }
|
|
public bool EnableLiveTv { get; set; }
|
|
public string[] EnabledChannels { get; set; }
|
|
|
|
public ConnectAuthorizationRequest()
|
|
{
|
|
EnabledLibraries = new string[] {};
|
|
EnabledChannels = new string[] {};
|
|
}
|
|
}
|
|
}
|