yavsc/src/Server/ViewModels/Account/ForgotPasswordViewModel.cs
Paul Schneider 45514010f2 REORG
2026-02-14 16:54:27 +00:00

12 lines
236 B
C#

using System.ComponentModel.DataAnnotations;
namespace Yavsc.ViewModels.Account
{
public class ForgotPasswordViewModel
{
[Required]
[StringLength(512)]
public string? LoginOrEmail { get; set; }
}
}