Files
HeadMeld/Models/MainWindowModel.cs
Dunestorm 67f440e7e8 HeadMeld 0.0.0.1
- Working MVVM implementation
- Refactored code
2022-03-27 22:20:56 +01:00

15 lines
297 B
C#

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; }
}
}