16 lines
334 B
C#
16 lines
334 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace WebApplication.Models.AccountViewModels
|
||
|
{
|
||
|
public class ForgotPasswordViewModel
|
||
|
{
|
||
|
[Required]
|
||
|
[EmailAddress]
|
||
|
public string Email { get; set; }
|
||
|
}
|
||
|
}
|