Files
RavenDB.Identity/Sample.Web.NetCore/Models/AccountViewModels/ForgotPasswordViewModel.cs
T
2017-08-23 13:31:58 -05:00

16 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace Sample.Web.NetCore.Models.AccountViewModels
{
public class ForgotPasswordViewModel
{
[Required]
[EmailAddress]
public string Email { get; set; }
}
}