8 lines
231 B
C#
8 lines
231 B
C#
namespace Pterodactyl.NETSDK.Models.Application.Nodes;
|
|
|
|
public class NodeResponse
|
|
{
|
|
[JsonPropertyName("object")] public string? ObjectType { get; set; }
|
|
|
|
[JsonPropertyName("attributes")] public Node? Node { get; set; }
|
|
} |