namespace SabreTools.Models.ClrMamePro { /// video public class Video { /// screen, (raster|vector) [Required] public string? Screen { get; set; } /// orientation, (vertical|horizontal) [Required] public string? Orientation { get; set; } /// x, Numeric? public string? X { get; set; } /// y, Numeric? public string? Y { get; set; } /// aspectx, Numeric? public string? AspectX { get; set; } /// aspecty, Numeric? public string? AspectY { get; set; } /// freq, Numeric? public string? Freq { get; set; } #region DO NOT USE IN PRODUCTION /// Should be empty public object[]? ADDITIONAL_ELEMENTS { get; set; } #endregion } }