14 lines
410 B
C#
14 lines
410 B
C#
namespace Marco.Pms.Model.ViewModels.Activities
|
|
{
|
|
public class BasicEmployeeVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? FirstName { get; set; }
|
|
public string? LastName { get; set; }
|
|
public string? Email { get; set; }
|
|
public byte[]? Photo { get; set; }
|
|
public Guid? JobRoleId { get; set; }
|
|
public string? JobRoleName { get; set; }
|
|
}
|
|
}
|