2023-07-11 23:39:54 -04:00
|
|
|
namespace SabreTools.Models.AttractMode
|
|
|
|
|
{
|
|
|
|
|
public class Row
|
|
|
|
|
{
|
2023-07-13 13:16:37 -04:00
|
|
|
/// <remarks>Also called Romname</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
|
|
|
|
public string? Name { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Title { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Emulator { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? CloneOf { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Year { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Manufacturer { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Category { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Players { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Rotation { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Control { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Status { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? DisplayCount { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? DisplayType { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? AltRomname { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? AltTitle { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Extra { get; set; }
|
2023-07-11 23:39:54 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Buttons { get; set; }
|
2023-07-13 13:16:37 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Favorite { get; set; }
|
2023-07-13 13:16:37 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? Tags { get; set; }
|
2023-07-13 13:16:37 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? PlayedCount { get; set; }
|
2023-07-13 13:16:37 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? PlayedTime { get; set; }
|
2023-07-13 13:16:37 -04:00
|
|
|
|
2023-07-29 00:06:31 -04:00
|
|
|
public string? FileIsAvailable { get; set; }
|
2023-07-13 13:16:37 -04:00
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
2023-07-13 15:32:00 -04:00
|
|
|
public string[]? ADDITIONAL_ELEMENTS { get; set; }
|
2023-07-13 13:16:37 -04:00
|
|
|
|
|
|
|
|
#endregion
|
2023-07-11 23:39:54 -04:00
|
|
|
}
|
|
|
|
|
}
|