LANCommander/LANCommander.Server.ImportExport/Legacy/Models/Action.cs
2025-12-04 23:44:42 -06:00

13 lines
No EOL
482 B
C#

namespace LANCommander.Server.ImportExport.Legacy.Models;
internal class Action : KeyedModel
{
public Guid GameId { get; set; }
public string Name { get; set; }
public string Arguments { get; set; }
public string Path { get; set; }
public string WorkingDirectory { get; set; }
public bool IsPrimaryAction { get; set; }
public int SortOrder { get; set; }
public Dictionary<string, string> Variables { get; set; } = new Dictionary<string, string>();
}