NBloodServerSupervisor/WebInterface/Models/GetStatisticsResponse.cs
2020-01-27 13:48:53 +00:00

14 lines
283 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebInterface
{
public class GetStatisticsResponse
{
public DateTime RunningSinceUtc { get; set; }
public int ManMinutesPlayed { get; set; }
}
}