using System; namespace ShiroginSDK.Runtime.Modules.Events { public static partial class ShiroginEvents { public static class Theme { [Serializable] public class ThemeChanged { public string ThemeName; public ThemeChanged(string themeName) { ThemeName = themeName; } } } } }