namespace SabreTools.Data.Models.WiseInstaller.Actions { /// /// Copy Local File /// /// This action copies uncompressed files from a floppy disk, CD, the destination computer, /// or a network drive. /// /// /// public class CopyLocalFile : MachineStateData { /// /// Unknown, 0x0C /// public ushort Flags { get; set; } // 0x00 - 0x01 /// /// Padding /// /// /// 40 bytes, padding because structure is internally /// shared with /// public byte[] Padding { get; set; } = new byte[40]; // 0x02 - 0x2A /// /// Destination path /// public string? Destination { get; set; } // 0x2B - ? /// /// Description, one per language + 1 /// public string[]? Description { get; set; } /// /// Source file /// public string? Source { get; set; } } }