17 lines
373 B
C#
17 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; }
|
||
|
}
|
||
|
}
|