using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.Data.Models.Metadata
{
[JsonObject("video"), XmlRoot("video")]
public class Video : DatItem
{
#region Properties
/// Originally "freq"
public double? Refresh { get; set; }
/// (raster|vector)
public DisplayType? Screen { get; set; }
#endregion
#region Keys
/// long
public const string AspectXKey = "aspectx";
/// long
public const string AspectYKey = "aspecty";
/// long; Originally "y"
public const string HeightKey = "height";
/// (vertical|horizontal)
public const string OrientationKey = "orientation";
/// long; Originally "x"
public const string WidthKey = "width";
#endregion
public Video() => ItemType = ItemType.Video;
}
}