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

22 lines
527 B
C#

namespace LittleShop.DTOs;
public class UserDto
{
public Guid Id { get; set; }
public string Username { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; }
public bool IsActive { get; set; }
}
public class CreateUserDto
{
public string Username { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
public class UpdateUserDto
{
public string? Username { get; set; }
public string? Password { get; set; }
public bool? IsActive { get; set; }
}