mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-23 15:30:56 -04:00
34 lines
849 B
C#
34 lines
849 B
C#
|
|
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; }
|
|
}
|
|
|
|
public class GetConnectUserResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string DisplayName { get; set; }
|
|
public string Email { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public string ImageUrl { get; set; }
|
|
}
|
|
|
|
public class ServerUserAuthorizationResponse
|
|
{
|
|
|
|
}
|
|
}
|