14 lines
455 B
C#

namespace Marco.Pms.Model.MongoDBModels.Employees
{
public class BasicEmployeeMongoDB
{
public string Id { get; set; } = string.Empty;
public string? FirstName { get; set; }
public string? LastName { get; set; }
public byte[]? Photo { get; set; }
public string? JobRoleId { get; set; }
public string? JobRoleName { get; set; }
public string TenantId { get; set; } = string.Empty;
}
}