mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
14 lines
352 B
C#
14 lines
352 B
C#
|
|
namespace MediaBrowser.Model.Connect
|
|
{
|
|
public class ConnectUserServer
|
|
{
|
|
public string Id { get; set; }
|
|
public string Url { get; set; }
|
|
public string Name { get; set; }
|
|
public string AccessKey { get; set; }
|
|
public string SystemId { get; set; }
|
|
public string LocalAddress { get; set; }
|
|
}
|
|
}
|