Files
SabreTools/SabreTools.Models/SoftwareList/DipValue.cs
2023-07-11 23:39:54 -04:00

19 lines
431 B
C#

using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.SoftwareList
{
[XmlRoot("dipvalue")]
public class DipValue
{
[XmlAttribute("name")]
public string Name { get; set; }
[XmlAttribute("value")]
public string Value { get; set; }
/// <remarks>(yes|no) "no"</remarks>
[XmlAttribute("default")]
public string? Default { get; set; }
}
}