mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -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;
|
|
} |