ExternalLoginConfirmationViewModel.cs 370 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace Winsoft.GOV.XF.WXCore.Models.AccountViewModels
  7. {
  8. public class ExternalLoginConfirmationViewModel
  9. {
  10. [Required]
  11. [EmailAddress]
  12. public string Email { get; set; }
  13. }
  14. }