mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-23 15:16:14 +00:00
32 lines
661 B
C#
32 lines
661 B
C#
namespace SabreTools.Models.DosCenter
|
|
{
|
|
/// <remarks>game</remarks>
|
|
public class Game
|
|
{
|
|
/// <remarks>name</remarks>
|
|
[Required]
|
|
#if NET48
|
|
public string Name { get; set; }
|
|
#else
|
|
public string? Name { get; set; }
|
|
#endif
|
|
|
|
/// <remarks>file</remarks>
|
|
#if NET48
|
|
public File[] File { get; set; }
|
|
#else
|
|
public File[]? File { 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
|
|
}
|
|
} |