2017-08-23 13:31:58 -05:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2017-08-29 15:42:24 -05:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
2017-08-23 13:31:58 -05:00
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2017-08-29 15:42:24 -05:00
|
|
|
namespace Sample.Models.ManageViewModels
|
2017-08-23 13:31:58 -05:00
|
|
|
{
|
|
|
|
|
public class IndexViewModel
|
|
|
|
|
{
|
2017-08-29 15:42:24 -05:00
|
|
|
public string Username { get; set; }
|
2017-08-23 13:31:58 -05:00
|
|
|
|
2017-08-29 15:42:24 -05:00
|
|
|
public bool IsEmailConfirmed { get; set; }
|
2017-08-23 13:31:58 -05:00
|
|
|
|
2017-08-29 15:42:24 -05:00
|
|
|
[Required]
|
|
|
|
|
[EmailAddress]
|
|
|
|
|
public string Email { get; set; }
|
|
|
|
|
|
|
|
|
|
[Phone]
|
|
|
|
|
[Display(Name = "Phone number")]
|
2017-08-23 13:31:58 -05:00
|
|
|
public string PhoneNumber { get; set; }
|
|
|
|
|
|
2017-08-29 15:42:24 -05:00
|
|
|
public string StatusMessage { get; set; }
|
2017-08-23 13:31:58 -05:00
|
|
|
}
|
|
|
|
|
}
|