Add prototype GUI

This commit is contained in:
2021-12-04 12:27:16 +01:00
parent 14fb199206
commit 3795774023
10 changed files with 276 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExeLauncher.GUI
{
internal record ApplicationModel
{
public int Number { get; set; } = 1;
public string Path { get; set; } = "";
public string Arguments { get; set; } = "";
public string WorkingDirectory { get; set; } = "";
}
}