mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-23 17:22:14 +00:00
22 lines
433 B
C#
22 lines
433 B
C#
namespace SabreTools.Models.Listrom
|
|
{
|
|
public class MetadataFile
|
|
{
|
|
#if NET48
|
|
public Set[] Set { get; set; }
|
|
#else
|
|
public Set[]? Set { get; set; }
|
|
#endif
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
#if NET48
|
|
public string[] ADDITIONAL_ELEMENTS { get; set; }
|
|
#else
|
|
public string[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
#endif
|
|
|
|
#endregion
|
|
}
|
|
} |