demo20230512/Areas/admin/ViewModels/AccountUpdateProfileViewModel.cs
2023-05-12 10:20:28 +08:00

20 lines
643 B
C#

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; }
}
}