15 lines
364 B
C#
15 lines
364 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace CSharpLdtkImporter.Models;
|
|
|
|
public class LdtkEntityInstance
|
|
{
|
|
[JsonPropertyName("__identifier")]
|
|
public string Identifier { get; set; }
|
|
|
|
[JsonPropertyName("px")]
|
|
public int[] Px { get; set; }
|
|
|
|
[JsonPropertyName("fieldInstances")]
|
|
public LdtkFieldInstance[] FieldInstances { get; set; }
|
|
} |