Files
Wino-Mail/Wino.Core.UWP/Models/Personalization/SystemAppTheme.cs

13 lines
323 B
C#
Raw Normal View History

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