Cleaning up the solution. Separating Shared.WinRT, Services and Synchronization. Removing synchronization from app. Reducing bundle size by 45mb.
This commit is contained in:
13
Wino.Shared.WinRT/Models/Personalization/SystemAppTheme.cs
Normal file
13
Wino.Shared.WinRT/Models/Personalization/SystemAppTheme.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using Wino.Domain.Enums;
|
||||
|
||||
namespace Wino.Shared.WinRT.Models.Personalization
|
||||
{
|
||||
// Mica - Acrylic.
|
||||
public class SystemAppTheme : PreDefinedAppTheme
|
||||
{
|
||||
public SystemAppTheme(string themeName, Guid id) : base(themeName, id, "") { }
|
||||
|
||||
public override AppThemeType AppThemeType => AppThemeType.System;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user