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.

9 lines
217 B

1 year ago
  1. using System.Collections.Generic;
  2. namespace TrustedUninstaller.Shared.Tasks
  3. {
  4. public class TaskList
  5. {
  6. public List<UninstallTask> uninstallTasks { get; set; } = new List<UninstallTask> { };
  7. }
  8. }