mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-26 17:40:30 +01:00
Add GPL modules
This commit is contained in:
21
MediaBrowser.Model/Connect/ConnectAuthorization.cs
Normal file
21
MediaBrowser.Model/Connect/ConnectAuthorization.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Connect
|
||||
{
|
||||
public class ConnectAuthorization
|
||||
{
|
||||
public string ConnectUserId { get; set; }
|
||||
public string UserName { get; set; }
|
||||
public string ImageUrl { get; set; }
|
||||
public string Id { get; set; }
|
||||
public string[] EnabledLibraries { get; set; }
|
||||
public bool EnableLiveTv { get; set; }
|
||||
public string[] EnabledChannels { get; set; }
|
||||
|
||||
public ConnectAuthorization()
|
||||
{
|
||||
EnabledLibraries = new string[] {};
|
||||
EnabledChannels = new string[] {};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user