Files
SabreTools/SabreTools.Models/SoftwareList/SharedFeat.cs

15 lines
311 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("sharedfeat")]
public class SharedFeat
{
[XmlAttribute("name")]
public string Name { get; set; }
[XmlAttribute("value")]
public string? Value { get; set; }
}
}