mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-10 00:03:49 +00:00
22 lines
480 B
C#
22 lines
480 B
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SabreTools.Data.Models.Listxml
|
|
{
|
|
[XmlRoot("biosset")]
|
|
public class BiosSet
|
|
{
|
|
[Required]
|
|
[XmlAttribute("name")]
|
|
public string? Name { get; set; }
|
|
|
|
[Required]
|
|
[XmlAttribute("description")]
|
|
public string? Description { get; set; }
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
[XmlAttribute("default")]
|
|
public bool? Default { get; set; }
|
|
}
|
|
}
|