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

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