16 lines
366 B
C#
16 lines
366 B
C#
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace CSharpLdtkImporter.Models;
|
|
|
|
public class LdtkFieldInstance
|
|
{
|
|
[JsonPropertyName("__identifier")]
|
|
public string Identifier { get; set; }
|
|
|
|
[JsonPropertyName("__type")]
|
|
public string Type { get; set; }
|
|
|
|
[JsonPropertyName("__value")]
|
|
public JsonElement Value { get; set; }
|
|
} |