2018-03-26 19:27:29 +02:00
|
|
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Account
|
|
|
|
|
{
|
|
|
|
|
public class ExternalLoginConfirmationViewModel
|
|
|
|
|
{
|
|
|
|
|
[Required]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
[EmailAddress]
|
|
|
|
|
public string Email { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|