sodoff/src/Schema/NameValidationResponse.cs
2023-06-17 22:17:36 +01:00

14 lines
329 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "NameValidationResponse", Namespace = "")]
public class NameValidationResponse
{
[XmlElement(ElementName = "ErrorMessage")]
public string ErrorMessage;
[XmlElement(ElementName = "Category")]
public NameValidationResult Result;
}