mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 01:24:44 +01:00
update ConnectionManager
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user