namespace BinaryObjectScanner.Models.BDPlus
{
///
public sealed class SVM
{
///
/// "BDSVM_CC"
///
public string Signature;
///
/// 5 bytes of unknown data
///
public byte[] Unknown1;
///
/// Version year
///
public ushort Year;
///
/// Version month
///
public byte Month;
///
/// Version day
///
public byte Day;
///
/// 4 bytes of unknown data
///
public byte[] Unknown2;
///
/// Length
///
public uint Length;
///
/// Length bytes of data
///
public byte[] Data;
}
}