jellyfin/MediaBrowser.Server.Implementations/Connect/ServerRegistrationResponse.cs

19 lines
467 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; }
}
}