mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-14 02:02:57 +00:00
21 lines
441 B
C#
21 lines
441 B
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SabreTools.Data.Models.Listxml
|
|
{
|
|
[XmlRoot("ramoption")]
|
|
public class RamOption
|
|
{
|
|
[Required]
|
|
[XmlAttribute("name")]
|
|
public string? Name { get; set; }
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
[XmlAttribute("default")]
|
|
public bool? Default { get; set; }
|
|
|
|
[XmlText]
|
|
public string? Content { get; set; }
|
|
}
|
|
}
|