mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +01:00
9 lines
208 B
C#
9 lines
208 B
C#
|
namespace BTCPayServer.Client.App.Models;
|
|||
|
|
|||
|
public class ResetPasswordRequest
|
|||
|
{
|
|||
|
public string Email { get; set; }
|
|||
|
public string ResetCode { get; set; }
|
|||
|
public string NewPassword { get; set; }
|
|||
|
}
|