Files
SabreTools/SabreTools.Models/SoftwareList/Info.cs

15 lines
299 B
C#
Raw Normal View History

2023-07-11 23:39:54 -04:00
using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.SoftwareList
{
[XmlRoot("info")]
public class Info
{
[XmlAttribute("name")]
public string Name { get; set; }
[XmlAttribute("value")]
public string? Value { get; set; }
}
}