Files
SVSimServer/SVSim.Database/Models/Config/DefaultGrantsConfig.cs
2026-05-24 21:13:15 -04:00

13 lines
392 B
C#

namespace SVSim.Database.Models.Config;
/// <summary>Per-viewer-registration default currency grants.</summary>
[ConfigSection("DefaultGrants")]
public class DefaultGrantsConfig
{
public ulong Crystals { get; set; } = 50000;
public ulong Rupees { get; set; } = 50000;
public ulong Ether { get; set; } = 50000;
public static DefaultGrantsConfig ShippedDefaults() => new();
}