mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
24 lines
681 B
C#
24 lines
681 B
C#
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<WakeOnLanInfo> WakeOnLanInfos { get; set; }
|
|
public DateTime DateLastAccessed { get; set; }
|
|
|
|
public ServerInfo()
|
|
{
|
|
WakeOnLanInfos = new List<WakeOnLanInfo>();
|
|
LocalAddress = "http://localhost:8096";
|
|
}
|
|
}
|
|
}
|