2023-07-12 12:02:58 -04:00
|
|
|
namespace SabreTools.Models.ClrMamePro
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>biosset</remarks>
|
2023-07-13 23:04:11 -04:00
|
|
|
public class BiosSet : ItemBase
|
2023-07-12 12:02:58 -04:00
|
|
|
{
|
|
|
|
|
/// <remarks>name</remarks>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>description</remarks>
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>default</remarks>
|
|
|
|
|
public string? Default { get; set; }
|
2023-07-13 23:04:11 -04:00
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
public string[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
2023-07-12 12:02:58 -04:00
|
|
|
}
|
|
|
|
|
}
|