Kavita/API/DTOs/Account/UpdateEmailDto.cs
Joe Milazzo 3e1d0f39f0
Stat hotfix (#1748)
* Fixed a bug where a divide by 0 could occur

* Email change now requires a password
2023-01-15 14:16:51 +08:00

8 lines
143 B
C#

namespace API.DTOs.Account;
public class UpdateEmailDto
{
public string Email { get; set; }
public string Password { get; set; }
}