Add prototype GUI
This commit is contained in:
16
ExeLauncher.GUI/ApplicationModel.cs
Normal file
16
ExeLauncher.GUI/ApplicationModel.cs
Normal 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; } = "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user