mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-24 23:35:03 -05:00
8 lines
175 B
C#
8 lines
175 B
C#
namespace API.DTOs.Account;
|
|
|
|
public sealed record UpdateEmailDto
|
|
{
|
|
public string Email { get; set; } = default!;
|
|
public string Password { get; set; } = default!;
|
|
}
|