16 lines
447 B
C#
16 lines
447 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace WebAPI.Data.Dto
|
|
{
|
|
public class PterodactylCreateUserRequest
|
|
{
|
|
public string Email { get; set; }
|
|
public string Username { get; set; }
|
|
[JsonProperty("external_id")]
|
|
public string ExternalId { get; set; }
|
|
[JsonProperty("first_name")]
|
|
public string FirstName { get; set; }
|
|
[JsonProperty("last_name")]
|
|
public string LastName { get; set; }
|
|
}
|
|
} |