22 lines
590 B
C#
22 lines
590 B
C#
namespace line_gestao_api.Dtos;
|
|
|
|
public class ProfileMeDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Nome { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
}
|
|
|
|
public class UpdateProfileRequest
|
|
{
|
|
public string Nome { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
}
|
|
|
|
public class ChangeMyPasswordRequest
|
|
{
|
|
public string CredencialAtual { get; set; } = string.Empty;
|
|
public string NovaCredencial { get; set; } = string.Empty;
|
|
public string ConfirmarNovaCredencial { get; set; } = string.Empty;
|
|
}
|