namespace SabreTools.Data.Models.WiseInstaller.Actions { /// /// Edit INI File /// /// This action edits an .INI file on the destination computer. To edit SYSTEM.INI, use the /// Add to SYSTEM.INI action instead. /// /// /// public class EditIniFile : MachineStateData { /// /// Path name to INI file /// /// Open for writing in append mode public string? Pathname { get; set; } /// /// INI section, represented by a Settings line /// in the original script /// public string? Section { get; set; } /// /// Multiline string containing values, each representing /// a new Settings line in the original script /// public string? Values { get; set; } } }