mvvm pattern

This commit is contained in:
2021-11-12 13:03:12 +00:00
parent ad0779c454
commit 8fb0b6238e
9 changed files with 232 additions and 59 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlueControl.uwp.Services
{
public interface IShellService
{
Task UiStaRunAsync(Action action);
void CloseApplication();
}
}