littleshop/DTOs/LoginDto.cs
2025-08-20 13:20:19 +01:00

12 lines
248 B
C#

using System.ComponentModel.DataAnnotations;
namespace LittleShop.DTOs;
public class LoginDto
{
[Required]
public string Username { get; set; } = string.Empty;
[Required]
public string Password { get; set; } = string.Empty;
}