mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
11 lines
246 B
C#
11 lines
246 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "Announcements", Namespace = "")]
|
|
[Serializable]
|
|
public class AnnouncementList
|
|
{
|
|
[XmlElement(ElementName = "Announcement")]
|
|
public Announcement[] Announcements;
|
|
} |