Files
2026-04-09 17:49:38 +02:00

9 lines
165 B
C#

namespace MP.Core.DTO
{
public class StatDataDTO
{
public string Label { get; set; } = "";
public double Value { get; set; } = 0;
}
}