mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-26 19:35:00 +01: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[] {};
|
|
}
|
|
}
|
|
}
|