2018-03-26 19:27:29 +02:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Manage
|
|
|
|
|
{
|
|
|
|
|
public class VerifyPhoneNumberViewModel
|
|
|
|
|
{
|
2026-03-09 02:07:09 +00:00
|
|
|
[Required]
|
2018-03-26 19:27:29 +02:00
|
|
|
public string Code { get; set; }
|
|
|
|
|
|
2026-03-09 02:07:09 +00:00
|
|
|
[Required]
|
2018-03-26 19:27:29 +02:00
|
|
|
[Phone]
|
|
|
|
|
[Display(Name = "Phone number")]
|
|
|
|
|
public string PhoneNumber { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|