14 lines
349 B
C#
14 lines
349 B
C#
using System;
|
|
using Wino.Core.Domain.Enums;
|
|
|
|
namespace Wino.Core.UWP.Models.Personalization
|
|
{
|
|
// Mica - Acrylic.
|
|
public class SystemAppTheme : PreDefinedAppTheme
|
|
{
|
|
public SystemAppTheme(string themeName, Guid id) : base(themeName, id, "") { }
|
|
|
|
public override AppThemeType AppThemeType => AppThemeType.System;
|
|
}
|
|
}
|