Files
SabreTools.Models/Listrom/MetadataFile.cs

22 lines
433 B
C#
Raw Normal View History

2023-09-04 00:07:54 -04:00
namespace SabreTools.Models.Listrom
{
public class MetadataFile
{
2023-09-04 01:31:30 -04:00
#if NET48
public Set[] Set { get; set; }
#else
2023-09-04 00:07:54 -04:00
public Set[]? Set { 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
}
}