sodoff/src/Schema/UserProfileDataList.cs
hictooth 199d44f1cd create profile
works up to start of tutorial
2023-06-19 20:23:53 +01:00

12 lines
273 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "ArrayOfUserProfileDisplayData")]
[Serializable]
public class UserProfileDataList
{
[XmlElement(ElementName = "UserProfileDisplayData")]
public UserProfileData[] UserProfiles;
}