8 lines
208 B
C#
8 lines
208 B
C#
public class ScoreContributor
|
|
{
|
|
public string Parameter { get; set; } = null!;
|
|
public int Points { get; set; }
|
|
public string? RawValue { get; set; }
|
|
public string? NormalRange { get; set; }
|
|
}
|