2016-09-06 17:09:19 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2016-09-07 13:52:26 -07:00
|
|
|
|
namespace Microsoft.eShopOnContainers.WebMVC.Models.ManageViewModels
|
2016-09-06 17:09:19 -07:00
|
|
|
|
{
|
|
|
|
|
public class AddPhoneNumberViewModel
|
|
|
|
|
{
|
|
|
|
|
[Required]
|
|
|
|
|
[Phone]
|
|
|
|
|
[Display(Name = "Phone number")]
|
|
|
|
|
public string PhoneNumber { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|