using System.Runtime.InteropServices; namespace SabreTools.Data.Models.Steam2Installer { /// /// Header from the .sim file. /// public sealed class Header { /// /// .sim file magic value /// public uint Magic { get; set; } /// /// Version (0x00000001) /// public uint Version { get; set; } /// /// Number of discs /// public uint Discs { get; set; } /// /// Size of the section containing file and path strings. /// public uint StringsSize { get; set; } } }