mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:15:28 +03:00
19 lines
467 B
C#
19 lines
467 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; }
|
|||
|
|
}
|
|||
|
|
}
|