mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Create Required attribute and tag properties
This commit is contained in:
@@ -7,12 +7,14 @@ namespace SabreTools.Models.Listxml
|
||||
public class Video
|
||||
{
|
||||
/// <remarks>(raster|vector)</remarks>
|
||||
[Required]
|
||||
[XmlAttribute("screen")]
|
||||
public string Screen { get; set; }
|
||||
public string? Screen { get; set; }
|
||||
|
||||
/// <remarks>(vertical|horizontal)</remarks>
|
||||
[Required]
|
||||
[XmlAttribute("orientation")]
|
||||
public string Orientation { get; set; }
|
||||
public string? Orientation { get; set; }
|
||||
|
||||
/// <remarks>Numeric</remarks>
|
||||
[XmlAttribute("width")]
|
||||
|
||||
Reference in New Issue
Block a user