Files
Wino-Mail/Wino.Core.WinUI/Models/Personalization/SystemAppTheme.cs
T

13 lines
325 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System;
using Wino.Core.Domain.Enums;
2025-09-29 11:23:44 +02:00
namespace Wino.Core.WinUI.Models.Personalization;
2025-02-16 11:54:23 +01:00
// Mica - Acrylic.
public class SystemAppTheme : PreDefinedAppTheme
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
public SystemAppTheme(string themeName, Guid id) : base(themeName, id, "") { }
2024-04-18 01:44:37 +02:00
2025-02-16 11:54:23 +01:00
public override AppThemeType AppThemeType => AppThemeType.System;
2024-04-18 01:44:37 +02:00
}