26 lines
780 B
C#
26 lines
780 B
C#
using System;
|
|
|
|
namespace AccountManagement.Application.Contracts.Account;
|
|
|
|
public class AccountViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string Fullname { get; set; }
|
|
public string Username { get; set; }
|
|
public string Mobile { get; set; }
|
|
public long RoleId { get; set; }
|
|
public string Role { get; set; }
|
|
public string ProfilePhoto { get; set; }
|
|
public string CreationDate { get; set; }
|
|
public string RoleName { get; set; }
|
|
public string VerifyCode { get; set; }
|
|
public string IsActiveString { get; set; }
|
|
public DateTime CreationDateGr { get; set; }
|
|
|
|
#region Mahan
|
|
|
|
public int PositionValue { get; set; }
|
|
public long PositionId { get; set; }
|
|
#endregion
|
|
public string AdminAreaPermission { get; set; }
|
|
} |