Files
LuckerGame/code/RoundConfiguration.cs

10 lines
221 B
C#

namespace LuckerParty;
/// <summary>
/// Contains configuration for a Round, usually created by the host in a Lobby.
/// </summary>
public class RoundConfiguration
{
public uint NumberOfMinigames { get; set; }
}