auto.bus_api/BackEnd (ASP.NET Web API)/SharedModels/Requests/AuthenticationRequest.cs

11 lines
245 B
C#

using System.ComponentModel.DataAnnotations;
namespace SharedModels.Requests;
public class AuthenticationRequest
{
[Required]
public string Email { get; set; } = null!;
[Required]
public string Password { get; set; } = null!;
}