17 lines
402 B
C#
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; } = "";
|
|
}
|
|
}
|