using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.Models.Internal
{
[JsonObject("video"), XmlRoot("video")]
public class Video : DatItem
{
#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";
/// double; Originally "freq"
public const string RefreshKey = "refresh";
/// (raster|vector)
public const string ScreenKey = "screen";
/// long; Originally "x"
public const string WidthKey = "width";
#endregion
public Video() => Type = ItemType.Video;
}
}