13 lines
241 B
C#
13 lines
241 B
C#
namespace YachtDice.UI.Presentation
|
|
{
|
|
public readonly struct ScoreSummary
|
|
{
|
|
public int DisplayTotal { get; }
|
|
|
|
public ScoreSummary(int displayTotal)
|
|
{
|
|
DisplayTotal = displayTotal;
|
|
}
|
|
}
|
|
}
|