mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
15 lines
310 B
C#
15 lines
310 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "Answers", IsNullable = true, Namespace = "")]
|
|
[Serializable]
|
|
public class ProfileUserAnswer
|
|
{
|
|
[XmlElement(ElementName = "AID")]
|
|
public int AnswerID;
|
|
|
|
[XmlElement(ElementName = "QID")]
|
|
public int QuestionID;
|
|
}
|