btcpayserver/BTCPayServer.Client/App/Models/ResetPasswordRequest.cs

9 lines
208 B
C#
Raw Normal View History

namespace BTCPayServer.Client.App.Models;
public class ResetPasswordRequest
{
public string Email { get; set; }
public string ResetCode { get; set; }
public string NewPassword { get; set; }
}