Files
Backend-Api/AccountManagement.Application.Contracts/Account/AccountViewModel.cs
2024-09-17 21:10:16 +03:30

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