9 lines
216 B
C#
9 lines
216 B
C#
namespace MetaCourse.Api.DTOs.Users;
|
|
|
|
public class LoginResponseDto
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
}
|