ldap-cesi/ldap-cesi/DTOs/Outputs/Salarie/SalarieMinimalDto.cs
2025-03-06 00:12:23 +01:00

17 lines
373 B
C#

namespace ldap_cesi.DTOs.Outputs.Salarie;
public class SalarieMinimalDto
{
public int Id { get; set; }
public string Nom { get; set; } = null!;
public string Prenom { get; set; } = null!;
public string TelephoneFixe { get; set; } = null!;
public string TelephonePortable { get; set; } = null!;
public string Email { get; set; } = null!;
}