mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-02 10:08:39 +00:00
Fix level missing resource response
This commit is contained in:
parent
3ebdc03951
commit
7ac0a6785d
1 changed files with 1 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Xml.Serialization;
|
using System.Xml.Serialization;
|
||||||
using LBPUnion.ProjectLighthouse.Serialization;
|
|
||||||
|
|
||||||
namespace LBPUnion.ProjectLighthouse.Types.Serialization;
|
namespace LBPUnion.ProjectLighthouse.Types.Serialization;
|
||||||
|
|
||||||
|
@ -15,8 +14,7 @@ public struct SlotResourceResponse : ILbpSerializable
|
||||||
[XmlAttribute("type")]
|
[XmlAttribute("type")]
|
||||||
public string Type { get; set; } = "user";
|
public string Type { get; set; } = "user";
|
||||||
|
|
||||||
[XmlArray("resources")]
|
[XmlElement("resource")]
|
||||||
[XmlArrayItem("resource")]
|
|
||||||
public List<string> Resources { get; set; }
|
public List<string> Resources { get; set; }
|
||||||
|
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue