jellyfin/MediaBrowser.Model/Connect/ConnectAuthorization.cs

21 lines
586 B
C#
Raw Normal View History

2014-10-13 22:14:53 +02:00

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; }
2015-01-20 06:19:13 +01:00
public string[] EnabledLibraries { get; set; }
2014-10-31 05:57:24 +01:00
public bool EnableLiveTv { get; set; }
public string[] EnabledChannels { get; set; }
2014-10-31 05:57:24 +01:00
public ConnectAuthorization()
{
2015-01-20 06:19:13 +01:00
EnabledLibraries = new string[] { };
EnabledChannels = new string[] { };
2014-10-31 05:57:24 +01:00
}
2014-10-13 22:14:53 +02:00
}
}