mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-12 17:23:01 +00:00
18 lines
433 B
C#
18 lines
433 B
C#
namespace SabreTools.Data.Models.ClrMamePro
|
|
{
|
|
/// <remarks>biosset</remarks>
|
|
public class BiosSet
|
|
{
|
|
/// <remarks>"name"</remarks>
|
|
[Required]
|
|
public string? Name { get; set; }
|
|
|
|
/// <remarks>"description"</remarks>
|
|
[Required]
|
|
public string? Description { get; set; }
|
|
|
|
/// <remarks>"default", (yes|no) "no"</remarks>
|
|
public bool? Default { get; set; }
|
|
}
|
|
}
|