diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-02 23:48:59 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-02 23:48:59 -0400 |
| commit | cd8db6fa54cbec936346098939db986ae52776bb (patch) | |
| tree | 4dc4b14ad20d0279c105591bc657ba10c221b579 /MediaBrowser.Model/ApiClient/ServerInfo.cs | |
| parent | cf745bb888120cc7fe7c9d7d1396d32d6196ddbc (diff) | |
add connection manager interface
Diffstat (limited to 'MediaBrowser.Model/ApiClient/ServerInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/ServerInfo.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/ServerInfo.cs b/MediaBrowser.Model/ApiClient/ServerInfo.cs new file mode 100644 index 000000000..966263726 --- /dev/null +++ b/MediaBrowser.Model/ApiClient/ServerInfo.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; + +namespace MediaBrowser.Model.ApiClient +{ + public class ServerInfo + { + public String Name { get; set; } + public String Id { get; set; } + public String LocalAddress { get; set; } + public String RemoteAddress { get; set; } + public String UserId { get; set; } + public String AccessToken { get; set; } + public List<string> MacAddresses { get; set; } + + public ServerInfo() + { + MacAddresses = new List<string>(); + + LocalAddress = "http://localhost:8096"; + } + } +} |
