namespace SabreTools.Models.ClrMamePro { public class MetadataFile { /// clrmamepro #if NET48 public ClrMamePro ClrMamePro { get; set; } #else public ClrMamePro? ClrMamePro { get; set; } #endif /// game, machine, resource, set #if NET48 public GameBase[] Game { get; set; } #else public GameBase?[]? Game { 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 } }