jellyfin-server/MediaBrowser.Server.Implementations/Connect/Responses.cs

34 lines
851 B
C#
Raw Normal View History

2014-08-25 03:54:45 +00:00

namespace MediaBrowser.Server.Implementations.Connect
{
public class ServerRegistrationResponse
{
public string Id { get; set; }
public string Url { get; set; }
public string Name { get; set; }
public string AccessKey { get; set; }
}
public class UpdateServerRegistrationResponse
{
public string Id { get; set; }
public string Url { get; set; }
public string Name { get; set; }
}
2014-09-14 15:10:51 +00:00
public class GetConnectUserResponse
{
public string Id { get; set; }
public string Name { get; set; }
public string DisplayName { get; set; }
public string Email { get; set; }
public string IsActive { get; set; }
public string ImageUrl { get; set; }
}
2014-09-14 17:12:47 +00:00
public class ServerUserAuthorizationResponse
{
}
2014-08-25 03:54:45 +00:00
}