mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
37 lines
981 B
C#
37 lines
981 B
C#
|
|
using System.Xml.Serialization;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace SabreTools.Models.Internal
|
||
|
|
{
|
||
|
|
[JsonObject("video"), XmlRoot("video")]
|
||
|
|
public class Video : DatItem
|
||
|
|
{
|
||
|
|
#region Keys
|
||
|
|
|
||
|
|
/// <remarks>long</remarks>
|
||
|
|
public const string AspectXKey = "aspectx";
|
||
|
|
|
||
|
|
/// <remarks>long</remarks>
|
||
|
|
public const string AspectYKey = "aspecty";
|
||
|
|
|
||
|
|
/// <remarks>long; Originally "y"</remarks>
|
||
|
|
public const string HeightKey = "height";
|
||
|
|
|
||
|
|
/// <remarks>(vertical|horizontal)</remarks>
|
||
|
|
public const string OrientationKey = "orientation";
|
||
|
|
|
||
|
|
/// <remarks>double; Originally "freq"</remarks>
|
||
|
|
public const string RefreshKey = "refresh";
|
||
|
|
|
||
|
|
/// <remarks>(raster|vector)</remarks>
|
||
|
|
public const string ScreenKey = "screen";
|
||
|
|
|
||
|
|
/// <remarks>long; Originally "x"</remarks>
|
||
|
|
public const string WidthKey = "width";
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
|
||
|
|
public Video() => Type = ItemType.Video;
|
||
|
|
}
|
||
|
|
}
|