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

16 lines
485 B
C#

namespace SVSim.Database.Models.Config;
/// <summary>
/// Time-varying season/rotation state, populated by GlobalsImporter from prod captures.
/// </summary>
[ConfigSection("Rotation")]
public class RotationConfig
{
public string TsRotationId { get; set; } = "";
public bool IsBattlePassPeriod { get; set; }
public bool IsBeginnerMission { get; set; }
public int CardSetIdForResourceDlView { get; set; }
public static RotationConfig ShippedDefaults() => new();
}