15 lines
404 B
C#
15 lines
404 B
C#
|
|
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; }
|
|
}
|
|
}
|