btcpayserver-plugin-builder/PluginBuilder/ViewModels/Home/ForgotPasswordViewModel.cs
rockstardev 0cded9adb4
Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Has been cancelled
Resolving compilation warnings
2025-06-09 23:48:45 +02:00

14 lines
293 B
C#

using System.ComponentModel.DataAnnotations;
namespace PluginBuilder.ViewModels.Home;
public class ForgotPasswordViewModel
{
[Required]
[EmailAddress]
[Display(Name = "Email address")]
public string Email { get; set; } = null!;
public bool FormSubmitted { get; set; }
}