27 lines
545 B
C#
27 lines
545 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Auth.Contracts.DTOs.Users;
|
|
|
|
public class UserVM
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string PhotoPath { get; set; }
|
|
|
|
public string PhoneNumber { get; set; }
|
|
public string Email { get; set; }
|
|
|
|
// public string JobTitle { get; set; }
|
|
|
|
// public int Holidays { get; set; }
|
|
|
|
public List<string> Roles { get; set; }
|
|
|
|
// public List<SalaryVM> SalaryVMs { get; set; }
|
|
}
|