add connection manager interface

This commit is contained in:
Luke Pulverenti
2014-10-02 23:48:59 -04:00
parent cf745bb888
commit cd8db6fa54
40 changed files with 240 additions and 23 deletions

View File

@@ -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";
}
}
}