mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-22 23:10:34 -04:00
8 lines
143 B
C#
8 lines
143 B
C#
namespace API.DTOs.Account;
|
|
|
|
public class UpdateEmailDto
|
|
{
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
}
|