11 lines
279 B
C#
11 lines
279 B
C#
namespace khmereid_backend.Dtos
|
|
{
|
|
public class UserDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid IdentityId { get; set; } = Guid.Empty;
|
|
public string Phone { get; set; } = default!;
|
|
public string NationalId { get; set; } = null!;
|
|
}
|
|
}
|