using System;
namespace SabreTools.Models.PortableExecutable
{
///
/// This file describes the format of the pdb (Program Database) files of the "RSDS"
/// or "DS" type which are emitted by Miscrosoft's link.exe from version 7 and above.
///
///
public sealed class RSDSProgramDatabase
{
///
/// "RSDS" signature
///
public uint Signature { get; set; }
///
/// 16-byte Globally Unique Identifier
///
public Guid GUID { get; set; }
///
/// Ever-incrementing value, which is initially set to 1 and
/// incremented every time when a part of the PDB file is updated
/// without rewriting the whole file.
///
public uint Age { get; set; }
///
/// zero terminated UTF8 path and file name
///
#if NET48
public string PathAndFileName { get; set; }
#else
public string? PathAndFileName { get; set; }
#endif
}
}