mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-17 07:39:53 +01:00
Register
This commit is contained in:
14
APP/DTO/Register.cs
Normal file
14
APP/DTO/Register.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user