CLI tool for running Playbooks
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
706 B

using YamlDotNet.Serialization;
namespace TrustedUninstaller.Shared.Tasks
{
public class TaskAction
{
[YamlMember(typeof(bool), Alias = "ignoreErrors")]
public bool IgnoreErrors { get; set; } = false;
[YamlMember(typeof(string), Alias = "option")]
public string Option { get; set; } = null;
[YamlMember(typeof(string[]), Alias = "options")]
public string[] Options { get; set; } = null;
[YamlMember(typeof(string[]), Alias = "builds")]
public string[] Builds { get; set; } = null;
[YamlMember(typeof(string), Alias = "cpuArch")]
public string Arch { get; set; } = null;
}
}