HeadMeld 0.0.0.1

- Working MVVM implementation
- Refactored code
This commit is contained in:
2022-03-27 22:20:56 +01:00
parent ae9fbc6d97
commit 67f440e7e8
7 changed files with 131 additions and 79 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HeadMeld.Models
{
sealed class MainWindowModel
{
public bool ToggleAPOEnabled { get; set; }
public List<string> Profiles { get; set; }
}
}