Files
AspNetCore.Identity.MongoDb…/sample/MongoIdentitySample.Mvc/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs
T
2017-11-19 18:35:40 +00:00

16 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace MongoIdentitySample.Mvc.Models.AccountViewModels
{
public class ExternalLoginConfirmationViewModel
{
[Required]
[EmailAddress]
public string Email { get; set; }
}
}