mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 05:48:47 +01:00
add connection manager interface
This commit is contained in:
23
MediaBrowser.Model/ApiClient/ServerInfo.cs
Normal file
23
MediaBrowser.Model/ApiClient/ServerInfo.cs
Normal 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";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user