using System.Text.Json.Serialization; namespace Galaeth.ApiServer.Models; /// /// Authentication request. /// public class AuthenticateRequest { /// /// Agent's username. /// [JsonPropertyName("username")] public string Username { get; set; } /// /// Agent's password. /// [JsonPropertyName("password")] public string Password { get; set; } }