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; } public string PositionIsActive { get; set; } #endregion public string AdminAreaPermission { get; set; } public string ClientAreaPermission { get; set; } }