Files
lct2025-lonolith/LctMonolith/Services/Models/AuthRequest.cs
2025-09-30 02:16:37 +03:00

10 lines
251 B
C#

namespace LctMonolith.Services.Models;
public class AuthRequest
{
public string Email { get; set; } = null!;
public string Password { get; set; } = null!;
public string? FirstName { get; set; }
public string? LastName { get; set; }
}