jellyfin/MediaBrowser.Model/ApiClient/ServerInfo.cs

23 lines
629 B
C#
Raw Normal View History

2014-10-03 05:48:59 +02: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-04 03:42:38 +02:00
public List<WakeOnLanInfo> WakeOnLanInfos { get; set; }
2014-10-13 22:14:53 +02:00
public DateTime DateLastAccessed { get; set; }
2014-10-03 05:48:59 +02:00
public ServerInfo()
{
2014-10-04 03:42:38 +02:00
WakeOnLanInfos = new List<WakeOnLanInfo>();
2014-10-03 05:48:59 +02:00
}
}
}