9 lines
165 B
C#
9 lines
165 B
C#
namespace MP.Core.DTO
|
|
{
|
|
public class StatDataDTO
|
|
{
|
|
public string Label { get; set; } = "";
|
|
public double Value { get; set; } = 0;
|
|
}
|
|
}
|