You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
397 B
15 lines
397 B
|
|
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; }
|
|
public string UserType { get; set; }
|
|
}
|
|
}
|