mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
27 lines
657 B
C#
27 lines
657 B
C#
namespace SabreTools.Models.ClrMamePro
|
|
{
|
|
/// <remarks>chip</remarks>
|
|
public class Chip
|
|
{
|
|
/// <remarks>type, (cpu|audio)</remarks>
|
|
[Required]
|
|
public string? Type { get; set; }
|
|
|
|
/// <remarks>name</remarks>
|
|
[Required]
|
|
public string? Name { get; set; }
|
|
|
|
/// <remarks>flags</remarks>
|
|
public string? Flags { get; set; }
|
|
|
|
/// <remarks>clock, Numeric?</remarks>
|
|
public string? Clock { get; set; }
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
public object[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |