Files
NotificationFlyout/NotificationFlyout.Wpf.UI/Helpers/ThemeChangedEventArgs.cs
T
2021-02-07 16:24:20 +00:00

15 lines
290 B
C#

using System;
namespace NotificationFlyout.Wpf.UI.Helpers
{
public class ThemeChangedEventArgs : EventArgs
{
internal ThemeChangedEventArgs(SystemTheme theme)
{
Theme = theme;
}
public SystemTheme Theme { get; private set; }
}
}