namespace SabreTools.Data.Models.WiseInstaller.Actions { /// /// Delete File /// /// This action removes files from the destination computer. /// /// You do not need to delete temp files if you use the Get Temporary Filename action to /// create them because they are deleted automatically. /// /// /// public class DeleteFile : MachineStateData { /// /// Flags, unknown values /// /// /// Expected flags: /// - Include Sub-Directories (unknown) /// - Remove Directory Containing Files (unknown) /// public byte Flags { get; set; } /// /// Path name /// public string? Pathname { get; set; } } }