19 lines
459 B
C#
19 lines
459 B
C#
using System;
|
|
|
|
namespace NotificationFlyout.Wpf.UI.Helpers
|
|
{
|
|
public class SystemPersonalisationChangedEventArgs : EventArgs
|
|
{
|
|
internal SystemPersonalisationChangedEventArgs(SystemTheme theme, bool isColorPrevalence)
|
|
{
|
|
Theme = theme;
|
|
IsColorPrevalence = isColorPrevalence;
|
|
}
|
|
|
|
public SystemTheme Theme { get; private set; }
|
|
|
|
public bool IsColorPrevalence { get; private set; }
|
|
|
|
}
|
|
}
|