10 lines
221 B
C#
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; }
|
|
}
|