mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-22 18:52:44 +01:00
15 lines
308 B
C#
15 lines
308 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Model
|
|
{
|
|
[Serializable]
|
|
public class StateResponse
|
|
{
|
|
public IList<Server> Servers { get; set; }
|
|
public int ManMinutesPlayed { get; set; }
|
|
public DateTime RunningSinceUtc { get; set; }
|
|
}
|
|
}
|