mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 19:22:45 +01:00
14 lines
283 B
C#
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; }
|
|||
|
}
|
|||
|
}
|