9 lines
175 B
C#
9 lines
175 B
C#
namespace SVSim.EmulatedEntrypoint.Configuration;
|
|
|
|
public class DeckOptions
|
|
{
|
|
public const string SectionName = "Deck";
|
|
|
|
public int MaxDeckSlots { get; set; } = 36;
|
|
}
|