02a19aff56
Make csproj templates first-class in dotnet-new.
16 lines
373 B
C#
16 lines
373 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebApplication.Models.ManageViewModels
|
|
{
|
|
public class AddPhoneNumberViewModel
|
|
{
|
|
[Required]
|
|
[Phone]
|
|
[Display(Name = "Phone number")]
|
|
public string PhoneNumber { get; set; }
|
|
}
|
|
}
|