2016-11-24 15:31:33 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2017-01-30 11:35:16 +01:00
|
|
|
|
namespace Identity.API.Models.ManageViewModels
|
2016-11-24 15:31:33 +01:00
|
|
|
|
{
|
|
|
|
|
public class VerifyPhoneNumberViewModel
|
|
|
|
|
{
|
|
|
|
|
[Required]
|
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
[Phone]
|
|
|
|
|
[Display(Name = "Phone number")]
|
|
|
|
|
public string PhoneNumber { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|