17 lines
373 B
C#
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!;
|
|
|
|
} |