mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
- 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
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema
|
|
{
|
|
[XmlRoot(ElementName = "ContentInfo")]
|
|
[Serializable]
|
|
public class ContentInfoData
|
|
{
|
|
[XmlElement(ElementName = "DisplayName")]
|
|
public string? DisplayName;
|
|
|
|
[XmlElement(ElementName = "Description")]
|
|
public string? Description;
|
|
|
|
[XmlElement(ElementName = "ThumbnailUrl")]
|
|
public string? ThumbnailUrl;
|
|
|
|
[XmlElement(ElementName = "LinkUrl")]
|
|
public string? LinkUrl;
|
|
|
|
[XmlElement(ElementName = "TextureUrl")]
|
|
public string? TextureUrl;
|
|
|
|
[XmlElement(ElementName = "RolloverUrl")]
|
|
public string? RolloverUrl;
|
|
|
|
[XmlElement(ElementName = "CategoryUrl")]
|
|
public string? CategoryUrl;
|
|
|
|
[XmlElement(ElementName = "ContentType")]
|
|
public int? ContentType;
|
|
|
|
[XmlElement(ElementName = "MembersOnly")]
|
|
public bool? MembersOnly;
|
|
|
|
[XmlElement(ElementName = "LinkType")]
|
|
public ContentLinkType? LinkType;
|
|
}
|
|
} |