02a19aff56
Make csproj templates first-class in dotnet-new.
15 lines
334 B
C#
15 lines
334 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebApplication.Models.AccountViewModels
|
|
{
|
|
public class ForgotPasswordViewModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
public string Email { get; set; }
|
|
}
|
|
}
|