Files
jellyfin-jellyfin-1/MediaBrowser.Model/ApiClient/ServerInfo.cs

24 lines
679 B
C#
Raw Normal View History

2014-10-02 23:48:59 -04:00
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; }
2014-10-03 21:42:38 -04:00
public List<WakeOnLanInfo> WakeOnLanInfos { get; set; }
2014-10-13 16:14:53 -04:00
public DateTime DateLastAccessed { get; set; }
2014-10-18 17:25:04 -04:00
public String ExchangeToken { get; set; }
2014-10-02 23:48:59 -04:00
public ServerInfo()
{
2014-10-03 21:42:38 -04:00
WakeOnLanInfos = new List<WakeOnLanInfo>();
2014-10-02 23:48:59 -04:00
}
}
}