Files
Hushian/Presentation/HushianWebApp/Data/Dtos/UserDto.cs

15 lines
404 B
C#
Raw Normal View History

2025-07-11 20:37:28 +03:30

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; }
}
}