using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; using Resources; namespace Weee.Areas.Admin.ViewModels { public class AccountUpdateProfileViewModel { public string Id { get; set; } [Display(Name = "StaticLabelUserName", ResourceType = typeof(Resource))] public string AccountName { get; set; } [Display(Name = "UserName", ResourceType = typeof(Resource))] public string Name { get; set; } [Display(Name = "UserEmail", ResourceType = typeof(Resource))] public string Email { get; set; } } }