2016-05-17 18:22:18 +02:00
|
|
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Account
|
|
|
|
|
{
|
|
|
|
|
public class ForgotPasswordViewModel
|
|
|
|
|
{
|
|
|
|
|
[Required]
|
2017-09-18 16:12:13 +02:00
|
|
|
[StringLength(512)]
|
|
|
|
|
public string LoginOrEmail { get; set; }
|
2016-05-17 18:22:18 +02:00
|
|
|
}
|
|
|
|
|
}
|