2023-07-14 11:09:57 -04:00
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace SabreTools.Models.Listxml
|
|
|
|
|
{
|
|
|
|
|
[XmlRoot("video")]
|
|
|
|
|
public class Video
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>(raster|vector)</remarks>
|
|
|
|
|
[XmlAttribute("screen")]
|
|
|
|
|
public string Screen { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>(vertical|horizontal)</remarks>
|
|
|
|
|
[XmlAttribute("orientation")]
|
|
|
|
|
public string Orientation { get; set; }
|
|
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>Numeric</remarks>
|
2023-07-14 11:09:57 -04:00
|
|
|
[XmlAttribute("width")]
|
|
|
|
|
public string? Width { get; set; }
|
|
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>Numeric</remarks>
|
2023-07-14 11:09:57 -04:00
|
|
|
[XmlAttribute("height")]
|
|
|
|
|
public string? Height { get; set; }
|
|
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>Numeric</remarks>
|
2023-07-14 11:09:57 -04:00
|
|
|
[XmlAttribute("aspectx")]
|
|
|
|
|
public string? AspectX { get; set; }
|
|
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>Numeric</remarks>
|
2023-07-14 11:09:57 -04:00
|
|
|
[XmlAttribute("aspecty")]
|
|
|
|
|
public string? AspectY { get; set; }
|
|
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>Numeric</remarks>
|
2023-07-14 11:09:57 -04:00
|
|
|
[XmlAttribute("refresh")]
|
|
|
|
|
public string? Refresh { get; set; }
|
|
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
[XmlAnyAttribute]
|
|
|
|
|
public XmlAttribute[]? ADDITIONAL_ATTRIBUTES { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
[XmlAnyElement]
|
|
|
|
|
public object[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|