jellyfin-server/MediaBrowser.Model/Connect/ConnectAuthorization.cs

21 lines
588 B
C#
Raw Normal View History

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