mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-13 12:29:53 +01:00
11 lines
222 B
C#
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; }
|
|
}
|