Files
basic-computer-games/51_Hurkle/csharp/LossViewModel.cs
Martin Thoma e64fb6795c MAINT: Apply pre-commit
Remove byte-order-marker pre-commit check as there would be
many adjustments necessary
2022-03-05 09:29:23 +01:00

9 lines
166 B
C#

namespace hurkle
{
internal class LossViewModel
{
public int MaxGuesses { get; init; }
public GamePoint HurkleLocation { get; init; }
}
}