Change UserData in IKeyValue[]

This commit is contained in:
Guillaume Tauzin 2022-10-18 14:13:47 +02:00
parent d40cd8cf8e
commit cd620e2c1f
5 changed files with 12 additions and 8 deletions

View file

@ -1,4 +1,5 @@
using System.Runtime.Serialization;
using System.Collections.Generic;
namespace SVGLDLibs.Models
{
@ -149,6 +150,6 @@ namespace SVGLDLibs.Models
* User data that can be used for data storage or custom SVG
*/
[DataMember(EmitDefaultValue = false)]
public object userData;
public Dictionary<string, string> userData;
}
}