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.

14 lines
448 B

1 year 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 = "cpuArch")]
  11. public string Arch { get; set; } = null;
  12. }
  13. }