Newer
Older
Qwilight / Qwilight / XML.cs
@Taehui Taehui on 14 Nov 428 bytes 2023-11-15 오전 12:09
using System.Xml.Serialization;

namespace Qwilight
{
    public static class XML
    {
        [XmlRoot(ElementName = "courselist")]
        public sealed class LR2CRS
        {
            [XmlElement(ElementName = "course")]
            public Item[] Items { get; set; }

            public struct Item
            {
                public string title;
                public string hash;
            }
        }
    }
}