forked from Roflin/gamenight
12 lines
308 B
C#
12 lines
308 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace FrontendPlaformUno.Services.Endpoints.Gamenight.Login;
|
|
|
|
public record LoginRequest
|
|
{
|
|
[JsonPropertyName("username")]
|
|
public required string Username { get; init; }
|
|
[JsonPropertyName("password")]
|
|
public required string Password { get; init; }
|
|
}
|