2023-01-16 11:32:47 -06:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
2026-07-08 02:15:54 -05:00
|
|
|
|
using LANCommander.SDK.Enums;
|
2023-01-16 11:32:47 -06:00
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.SDK.Models
|
|
|
|
|
|
{
|
2024-08-26 20:18:54 -05:00
|
|
|
|
public class Action : KeyedModel
|
2023-01-16 11:32:47 -06:00
|
|
|
|
{
|
2025-02-28 14:02:27 -06:00
|
|
|
|
public Guid GameId { get; set; }
|
2023-01-16 11:32:47 -06:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Arguments { get; set; }
|
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
public string WorkingDirectory { get; set; }
|
2024-05-28 21:08:30 -05:00
|
|
|
|
public bool IsPrimaryAction { get; set; }
|
2023-01-16 23:45:46 -06:00
|
|
|
|
public int SortOrder { get; set; }
|
2026-05-15 00:14:46 -05:00
|
|
|
|
public string OptionOverrides { get; set; }
|
2026-07-08 02:15:54 -05:00
|
|
|
|
public RuntimePlatform Platforms { get; set; }
|
2024-05-28 00:54:09 -05:00
|
|
|
|
public Dictionary<string, string> Variables { get; set; } = new Dictionary<string, string>();
|
2023-01-16 11:32:47 -06:00
|
|
|
|
}
|
|
|
|
|
|
}
|