mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-06-05 22:35:17 -04:00
3e1d0f39f0
* Fixed a bug where a divide by 0 could occur * Email change now requires a password
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; }
|
|
}
|