8 lines
233 B
C#
8 lines
233 B
C#
namespace API.DTOs.Account;
|
|
|
|
public sealed record MigrateUserEmailDto
|
|
{
|
|
public string Email { get; set; } = default!;
|
|
public string Username { get; set; } = default!;
|
|
public string Password { get; set; } = default!;
|
|
}
|