...
This commit is contained in:
14
Presentation/HushianWebApp/Data/Dtos/UserDto.cs
Normal file
14
Presentation/HushianWebApp/Data/Dtos/UserDto.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user