mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-13 12:19:54 +01:00
15 lines
358 B
C#
15 lines
358 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace APP.DTO;
|
|
|
|
public class Register
|
|
{
|
|
[JsonPropertyName("username")] public string Username { get; set; }
|
|
|
|
[JsonPropertyName("malId")] public long MalId { get; set; }
|
|
|
|
[JsonPropertyName("secret")] public string Secret { get; set; }
|
|
|
|
[JsonPropertyName("sauce")] public string Sauce { get; set; }
|
|
}
|