Files
RavenDB.Identity/Sample/Models/AccountViewModels/ExternalLoginViewModel.cs
T
2017-08-29 15:42:24 -05:00

16 lines
325 B
C#

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