2018-03-26 19:27:29 +02:00
|
|
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2019-09-04 01:25:36 +01:00
|
|
|
using Yavsc.Attributes.Validation;
|
2018-03-26 19:27:29 +02:00
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Account
|
|
|
|
|
{
|
|
|
|
|
public class ForgotPasswordViewModel
|
|
|
|
|
{
|
2019-09-04 01:25:36 +01:00
|
|
|
[YaRequired]
|
|
|
|
|
[YaStringLength(512)]
|
2024-02-25 18:05:10 +00:00
|
|
|
public string? LoginOrEmail { get; set; }
|
2018-03-26 19:27:29 +02:00
|
|
|
}
|
|
|
|
|
}
|