1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.UI/Events/WindowsThemeEventArgs.cs
2019-12-06 17:34:06 +01:00

15 lines
319 B
C#

using System;
using Artemis.UI.Utilities;
namespace Artemis.UI.Events
{
public class WindowsThemeEventArgs : EventArgs
{
public WindowsThemeEventArgs(ThemeWatcher.WindowsTheme theme)
{
Theme = theme;
}
public ThemeWatcher.WindowsTheme Theme { get; set; }
}
}