using System; namespace BuddyFinance.Integration.Models.Account { public class UserAccountModel { public int Id { get; set; } public string UserName { get; set; } public string Name { get; set; } public string Surname { get; set; } public string MobileNumber { get; set; } public string Names { get { return Name + " " + Surname; } } public string Password { get; set; } public string PasswordHash { get; set; } public DateTime? SignUpDate { get; set; } public DateTime? LastLoginDate { get; set; } public bool MustChangePassword { get; set; } public int ProfileId { get; set; } public string ProfileNumber { get; set; } public bool IsActive { get; set; } public int RoleId { get; set; } public UserRole UserRole { get; set; } } }