Files
jellyfin-jellyfin-1/MediaBrowser.Model/Connect/ConnectAuthorization.cs

21 lines
586 B
C#
Raw Normal View History

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