namespace YachtDice.UI.Presentation { public readonly struct ScoreSummary { public int DisplayTotal { get; } public ScoreSummary(int displayTotal) { DisplayTotal = displayTotal; } } }