Files
SabreTools/SabreTools.Models/OfflineList/DatUrl.cs

15 lines
299 B
C#
Raw Normal View History

2023-07-12 09:27:18 -04:00
using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.OfflineList
{
[XmlRoot("datURL")]
public class DatUrl
{
[XmlAttribute("fileName")]
public string? FileName { get; set; }
[XmlText]
2023-07-12 09:27:18 -04:00
public string? Content { get; set; }
}
}