mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-17 11:43:02 +00:00
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
using SabreTools.Data.Models.Metadata;
|
|
|
|
namespace SabreTools.Data.Models.Listxml
|
|
{
|
|
[XmlRoot("video")]
|
|
public class Video
|
|
{
|
|
/// <remarks>(raster|vector)</remarks>
|
|
[Required]
|
|
[XmlAttribute("screen")]
|
|
public DisplayType? Screen { get; set; }
|
|
|
|
/// <remarks>(vertical|horizontal)</remarks>
|
|
[Required]
|
|
[XmlAttribute("orientation")]
|
|
public string? Orientation { get; set; }
|
|
|
|
/// <remarks>Numeric</remarks>
|
|
[XmlAttribute("width")]
|
|
public string? Width { get; set; }
|
|
|
|
/// <remarks>Numeric</remarks>
|
|
[XmlAttribute("height")]
|
|
public string? Height { get; set; }
|
|
|
|
/// <remarks>Numeric</remarks>
|
|
[XmlAttribute("aspectx")]
|
|
public string? AspectX { get; set; }
|
|
|
|
/// <remarks>Numeric</remarks>
|
|
[XmlAttribute("aspecty")]
|
|
public string? AspectY { get; set; }
|
|
|
|
/// <remarks>Numeric</remarks>
|
|
[XmlAttribute("refresh")]
|
|
public double? Refresh { get; set; }
|
|
}
|
|
}
|