using System.Runtime.InteropServices; namespace SabreTools.Data.Models.VPK { /// [StructLayout(LayoutKind.Sequential)] public sealed class ArchiveHash { public uint ArchiveIndex; public uint ArchiveOffset; public uint Length; /// /// MD5 /// [MarshalAs(UnmanagedType.ByValArray, SizeConst = 0x10)] public byte[] Hash = new byte[0x10]; } }