jellyfin/MediaBrowser.Model/Connect/ConnectAuthorization.cs

21 lines
586 B
C#
Raw Normal View History

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