NBloodServerSupervisor/Model/StateResponse.cs

15 lines
308 B
C#
Raw Permalink Normal View History

2020-01-23 21:03:54 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Model
{
[Serializable]
public class StateResponse
{
public IList<Server> Servers { get; set; }
2020-01-27 14:48:53 +01:00
public int ManMinutesPlayed { get; set; }
public DateTime RunningSinceUtc { get; set; }
2020-01-23 21:03:54 +01:00
}
}