mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
13 lines
336 B
C#
13 lines
336 B
C#
using System.Diagnostics;
|
|
using System.Security.Cryptography.Xml;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(Namespace = "http://api.jumpstart.com/", ElementName = "ArrayOfBuddy", IsNullable = true)]
|
|
[Serializable]
|
|
public class BuddyList {
|
|
[XmlElement(ElementName = "Buddy")]
|
|
public Buddy[] Buddy;
|
|
}
|