2023-09-04 00:07:54 -04:00
|
|
|
namespace SabreTools.Models.DosCenter
|
|
|
|
|
{
|
|
|
|
|
public class MetadataFile
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>doscenter</remarks>
|
2023-09-04 01:31:30 -04:00
|
|
|
#if NET48
|
|
|
|
|
public DosCenter DosCenter { get; set; }
|
|
|
|
|
#else
|
2023-09-04 00:07:54 -04:00
|
|
|
public DosCenter? DosCenter { get; set; }
|
2023-09-04 01:31:30 -04:00
|
|
|
#endif
|
2023-09-04 00:07:54 -04:00
|
|
|
|
|
|
|
|
/// <remarks>game</remarks>
|
2023-09-04 01:31:30 -04:00
|
|
|
#if NET48
|
|
|
|
|
public Game[] Game { get; set; }
|
|
|
|
|
#else
|
2023-09-04 00:07:54 -04:00
|
|
|
public Game[]? Game { get; set; }
|
2023-09-04 01:31:30 -04:00
|
|
|
#endif
|
2023-09-04 00:07:54 -04:00
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
2023-09-04 01:31:30 -04:00
|
|
|
#if NET48
|
|
|
|
|
public string[] ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
|
#else
|
2023-09-04 00:07:54 -04:00
|
|
|
public string[]? ADDITIONAL_ELEMENTS { get; set; }
|
2023-09-04 01:31:30 -04:00
|
|
|
#endif
|
2023-09-04 00:07:54 -04:00
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|