Fix level missing resource response

This commit is contained in:
Slendy 2023-03-28 15:33:09 -05:00
commit 7ac0a6785d
No known key found for this signature in database
GPG key ID: 7288D68361B91428

View file

@ -1,6 +1,5 @@
using System.Collections.Generic;
using System.Xml.Serialization;
using LBPUnion.ProjectLighthouse.Serialization;
namespace LBPUnion.ProjectLighthouse.Types.Serialization;
@ -15,8 +14,7 @@ public struct SlotResourceResponse : ILbpSerializable
[XmlAttribute("type")]
public string Type { get; set; } = "user";
[XmlArray("resources")]
[XmlArrayItem("resource")]
[XmlElement("resource")]
public List<string> Resources { get; set; }
}