using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace Weee.ViewModels { public class ResendConfirmEmailViewModel { public string UserName { get; set; } [Required] public string Email { get; set; } } }