2024-07-16 23:28:57 +02:00
|
|
|
|
namespace Wino.Messages.Client.Shell
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When the application theme changed.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="IsUnderlyingThemeDark"></param>
|
|
|
|
|
|
public record ApplicationThemeChanged(bool IsUnderlyingThemeDark);
|
|
|
|
|
|
}
|