namespace SabreTools.Models.RomCenter
{
public class MetadataFile
{
/// [credits]
#if NET48
public Credits Credits { get; set; }
#else
public Credits? Credits { get; set; }
#endif
/// [dat]
#if NET48
public Dat Dat { get; set; }
#else
public Dat? Dat { get; set; }
#endif
/// [emulator]
#if NET48
public Emulator Emulator { get; set; }
#else
public Emulator? Emulator { get; set; }
#endif
/// [games]
#if NET48
public Games Games { get; set; }
#else
public Games? Games { get; set; }
#endif
#region DO NOT USE IN PRODUCTION
/// Should be empty
#if NET48
public string[] ADDITIONAL_ELEMENTS { get; set; }
#else
public string[]? ADDITIONAL_ELEMENTS { get; set; }
#endif
#endregion
}
}