update ConnectionManager

This commit is contained in:
Luke Pulverenti
2014-10-03 21:42:38 -04:00
parent cd8db6fa54
commit c8f24fc93a
11 changed files with 75 additions and 52 deletions

View File

@@ -11,13 +11,23 @@ namespace MediaBrowser.Model.ApiClient
public String RemoteAddress { get; set; }
public String UserId { get; set; }
public String AccessToken { get; set; }
public List<string> MacAddresses { get; set; }
public List<WakeOnLanInfo> WakeOnLanInfos { get; set; }
public ServerInfo()
{
MacAddresses = new List<string>();
WakeOnLanInfos = new List<WakeOnLanInfo>();
LocalAddress = "http://localhost:8096";
}
}
public class WakeOnLanInfo
{
public string MacAddress { get; set; }
public int Port { get; set; }
public WakeOnLanInfo()
{
Port = 9;
}
}
}