16 lines
327 B
C#
16 lines
327 B
C#
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; }
|
|
}
|
|
} |