mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add some more models (nw)
This commit is contained in:
18
SabreTools.Models/OfflineList/Find.cs
Normal file
18
SabreTools.Models/OfflineList/Find.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user