jellyfin/MediaBrowser.Model/Connect/ConnectAuthorization.cs
Luke Pulverenti 7a4d5b7951 3.0.5416.0
2014-10-31 00:57:24 -04:00

21 lines
590 B
C#

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; }
public string[] ExcludedLibraries { get; set; }
public bool EnableLiveTv { get; set; }
public string[] ExcludedChannels { get; set; }
public ConnectAuthorization()
{
ExcludedLibraries = new string[] { };
ExcludedChannels = new string[] { };
}
}
}