using System.Collections.Generic; namespace ShiroginSDK.Runtime.Modules.Data.Scripts { public class ThemeData : BaseData { public string ActiveTheme = "Default"; public List UnlockedThemes = new() { "Default" }; protected override string PrefsKey => "THEME_DATA"; } }