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

10 months ago
6 months ago
10 months ago
6 months ago
10 months ago
  1. using YamlDotNet.Serialization;
  2. namespace TrustedUninstaller.Shared.Tasks
  3. {
  4. public class TaskAction
  5. {
  6. [YamlMember(typeof(bool), Alias = "ignoreErrors")]
  7. public bool IgnoreErrors { get; set; } = false;
  8. [YamlMember(typeof(string), Alias = "option")]
  9. public string Option { get; set; } = null;
  10. [YamlMember(typeof(string[]), Alias = "options")]
  11. public string[] Options { get; set; } = null;
  12. [YamlMember(typeof(string[]), Alias = "builds")]
  13. public string[] Builds { get; set; } = null;
  14. [YamlMember(typeof(string), Alias = "cpuArch")]
  15. public string Arch { get; set; } = null;
  16. }
  17. }