namespace SabreTools.Models.RomCenter { /// [dat] public class Dat { /// version #if NET48 public string Version { get; set; } #else public string? Version { get; set; } #endif /// plugin #if NET48 public string Plugin { get; set; } #else public string? Plugin { get; set; } #endif /// split #if NET48 public string Split { get; set; } #else public string? Split { get; set; } #endif /// merge #if NET48 public string Merge { get; set; } #else public string? Merge { 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 } }