mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-01 18:55:03 -05: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; }
|
|
}
|