26 lines
840 B
C#
26 lines
840 B
C#
using Resources;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Weee.ViewModels.Lca
|
|
{
|
|
public class UserViewModel
|
|
{
|
|
[Display(Name = "UserName", ResourceType = typeof(Resource))]
|
|
public string Name { get; set; }
|
|
|
|
[Display(Name = "UserJob", ResourceType = typeof(Resource))]
|
|
public string Job { get; set; }
|
|
|
|
//to do : this property should merge into Email in IdentityUser
|
|
[Display(Name = "UserEmail", ResourceType = typeof(Resource))]
|
|
public string Email { get; set; }
|
|
|
|
//to do : this property should merge into PhoneNumber in IdentityUser
|
|
[Display(Name = "UserPhoneNumber", ResourceType = typeof(Resource))]
|
|
public string PhoneNumber { get; set; }
|
|
}
|
|
} |