Files

14 lines
348 B
C#
Raw Permalink Normal View History

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