sodoff/src/Schema/BadgeDataBadgeCompleteDialog.cs
YoshiCraft64 995bcd6307
Adventureland Part 1
Adds most of the stuff related to AL. Part 2 will have the mission data itself.
2025-02-09 21:28:44 -06:00

18 lines
441 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema
{
[XmlRoot(ElementName = "BadgeDataBadgeCompleteDialog", Namespace = "")]
[Serializable]
public class BadgeDataBadgeCompleteDialog
{
[XmlElement(ElementName = "FileName")]
public string FileName;
[XmlElement(ElementName = "NPC")]
public string NPC;
[XmlElement(ElementName = "Bundle")]
public string Bundle;
}
}