mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
14 lines
329 B
C#
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;
|
|
}
|