This commit is contained in:
mmrbnjd
2025-07-11 20:37:28 +03:30
parent 1924c88e7a
commit ff342a53c0
156 changed files with 13746 additions and 35 deletions

View File

@@ -0,0 +1,14 @@

namespace Hushian.Application.Dtos
{
public class HushianUserDto
{
public string UserID { get; set; }
public string UserName { get; set; }
public string FullName { get; set; }
public byte[]? img { get; set; }
public bool Available { get; set; } = true;
public string? Email { get; set; }
public string PhoneNumber { get; set; }
}
}