forked from SoDOff-Project/sodoff
- Add ``UserProfileTag`` Placeholder - Add Placeholder Profile Tags - Reimplement ``GetContentByTypeByUser`` - Fix ``GetContentByTypeByUser`` - Add Test Movie Theater Content - Add Real Movie Content - Add Big Cat - Fix CatURL - Add Arcade Content - Add Proper Response For Arcade Content - Replace ContentInfo With ContentInfoData - Still Trying Arcade Things - Update Jukebox - Movie Theater Thumbnails - Replace All Content And MMO URL's To Point To New Server - Replace https With http And Do Similar Action To ``allranks_wojs`` - Fix Typo - Add All Other MainStreet Missions - Add WoJS Ranks - Add Learning Content (Brain Arcade) - Restore Original Jukebox Content - Add External Games And Fruit Salad Chop To Arcade Content - Update Learning Content
12 lines
301 B
C#
12 lines
301 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema
|
|
{
|
|
[XmlRoot(ElementName = "ArrayOfContentInfo", Namespace = "http://api.jumpstart.com/")]
|
|
[Serializable]
|
|
public class ContentInfo
|
|
{
|
|
[XmlElement("ContentInfo")]
|
|
public ContentInfoData[] ContentInfoArray;
|
|
}
|
|
} |