Files
ExeLauncher/ExeLauncher.GUI/ApplicationModel.cs
2021-12-04 12:27:16 +01:00

17 lines
402 B
C#

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