Files
app/APP/DTO/Register.cs
2022-04-19 00:05:16 +02:00

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; }
}