Files
SabreTools.Serialization/SabreTools.Data.Models/Listxml/Video.cs

36 lines
889 B
C#
Raw Normal View History

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>
[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>
[Required]
2025-09-26 10:20:48 -04:00
[XmlAttribute("orientation")]
public Rotation? Orientation { get; set; }
2025-09-26 10:20:48 -04:00
[XmlAttribute("width")]
public long? Width { get; set; }
2025-09-26 10:20:48 -04:00
[XmlAttribute("height")]
public long? Height { get; set; }
2025-09-26 10:20:48 -04:00
[XmlAttribute("aspectx")]
public long? AspectX { get; set; }
2025-09-26 10:20:48 -04:00
[XmlAttribute("aspecty")]
public long? AspectY { get; set; }
2025-09-26 10:20:48 -04:00
[XmlAttribute("refresh")]
public double? Refresh { get; set; }
2025-09-26 10:20:48 -04:00
}
2026-01-27 12:03:01 -05:00
}