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

11 lines
222 B
C#

using System.Text.Json.Serialization;
namespace APP.DTO;
public class Auth
{
[JsonPropertyName("username")] public string Username { get; set; }
[JsonPropertyName("secret")] public string Secret { get; set; }
}