2025-09-26 10:20:48 -04:00
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
2026-04-02 02:18:08 -04:00
|
|
|
using SabreTools.Data.Models.Metadata;
|
2025-09-26 10:20:48 -04:00
|
|
|
|
2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.Listxml
|
2025-09-26 10:20:48 -04:00
|
|
|
{
|
|
|
|
|
[XmlRoot("video")]
|
|
|
|
|
public class Video
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>(raster|vector)</remarks>
|
2025-09-26 11:42:28 -04:00
|
|
|
[Required]
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlAttribute("screen")]
|
2026-04-02 02:18:08 -04:00
|
|
|
public DisplayType? Screen { get; set; }
|
2025-09-26 10:20:48 -04:00
|
|
|
|
|
|
|
|
/// <remarks>(vertical|horizontal)</remarks>
|
2025-09-26 11:42:28 -04:00
|
|
|
[Required]
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlAttribute("orientation")]
|
2026-04-03 13:08:36 -04:00
|
|
|
public Rotation? Orientation { get; set; }
|
2025-09-26 10:20:48 -04:00
|
|
|
|
|
|
|
|
[XmlAttribute("width")]
|
2026-04-03 12:31:24 -04:00
|
|
|
public long? Width { get; set; }
|
2025-09-26 10:20:48 -04:00
|
|
|
|
|
|
|
|
[XmlAttribute("height")]
|
2026-04-03 12:31:24 -04:00
|
|
|
public long? Height { get; set; }
|
2025-09-26 10:20:48 -04:00
|
|
|
|
|
|
|
|
[XmlAttribute("aspectx")]
|
2026-04-03 12:31:24 -04:00
|
|
|
public long? AspectX { get; set; }
|
2025-09-26 10:20:48 -04:00
|
|
|
|
|
|
|
|
[XmlAttribute("aspecty")]
|
2026-04-03 12:31:24 -04:00
|
|
|
public long? AspectY { get; set; }
|
2025-09-26 10:20:48 -04:00
|
|
|
|
|
|
|
|
[XmlAttribute("refresh")]
|
2026-04-03 00:04:11 -04:00
|
|
|
public double? Refresh { get; set; }
|
2025-09-26 10:20:48 -04:00
|
|
|
}
|
2026-01-27 12:03:01 -05:00
|
|
|
}
|