7 lines
230 B
C#
7 lines
230 B
C#
namespace Pterodactyl.NETSDK.Models.Application.Users;
|
|
|
|
public class UserResponse
|
|
{
|
|
[JsonPropertyName("object")] public string? ObjectType { get; set; }
|
|
[JsonPropertyName("attributes")] public User? User { get; set; }
|
|
} |