Files
RavenDB.Identity/Sample/Models/AccountViewModels/ForgotPasswordViewModel.cs
T

16 lines
329 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
2017-08-29 15:42:24 -05:00
namespace Sample.Models.AccountViewModels
{
public class ForgotPasswordViewModel
{
[Required]
[EmailAddress]
public string Email { get; set; }
}
}