mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
12 lines
310 B
C#
12 lines
310 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "DisplayNameUniqueResponse", Namespace = "")]
|
|
[Serializable]
|
|
public class DisplayNameUniqueResponse
|
|
{
|
|
[XmlElement(ElementName = "suggestions", IsNullable = true)]
|
|
public SuggestionResult Suggestions { get; set; }
|
|
}
|