2018-03-26 19:27:29 +02:00
|
|
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Account
|
|
|
|
|
{
|
|
|
|
|
public class ForgotPasswordViewModel
|
|
|
|
|
{
|
2024-11-06 13:00:34 +00:00
|
|
|
[Required]
|
|
|
|
|
[StringLength(512)]
|
2024-02-25 18:05:10 +00:00
|
|
|
public string? LoginOrEmail { get; set; }
|
2018-03-26 19:27:29 +02:00
|
|
|
}
|
|
|
|
|
}
|