Updates Models + Validator

This commit is contained in:
2026-03-12 16:24:32 +01:00
parent 7ede95db7c
commit fd33ac4744
26 changed files with 142 additions and 12 deletions

View File

@@ -0,0 +1,11 @@
namespace Knots.DTO.User;
public class GetUserDetailsDto
{
public string? Username { get; set; }
public string? Description {get; set;}
public string? Password { get; set; }
public string? Email { get; set; }
public string? Tel { get; set; }
public string? ProfilePicture { get; set; }
}