mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-26 16:20:06 +00:00
14 lines
281 B
C#
14 lines
281 B
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
using SabreTools.Data.Attributes;
|
|
|
|
namespace SabreTools.Data.Models.Listxml
|
|
{
|
|
[XmlRoot("sample")]
|
|
public class Sample
|
|
{
|
|
[Required]
|
|
[XmlAttribute("name")]
|
|
public string? Name { get; set; }
|
|
}
|
|
} |