using Microsoft.EntityFrameworkCore; namespace SVSim.Database.Models.Config; /// Per-viewer-registration default currency grants. [Owned] public class DefaultGrantsConfig { public ulong Crystals { get; set; } = 50000; public ulong Rupees { get; set; } = 50000; public ulong Ether { get; set; } = 50000; }