Add some more models (nw)

This commit is contained in:
Matt Nadareski
2023-07-12 09:27:18 -04:00
parent 3770b260c4
commit f491edb9be
27 changed files with 577 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.OfflineList
{
[XmlRoot("find")]
public class Find
{
[XmlAttribute("operation")]
public string? Operation { get; set; }
/// <remarks>Numeric?</remarks>
[XmlAttribute("value")]
public string? Value { get; set; }
public string? Content { get; set; }
}
}