NBloodServerSupervisor/WebInterface/Models/GetStatisticsResponse.cs

14 lines
283 B
C#
Raw Normal View History

2020-01-27 14:48:53 +01:00
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; }
}
}