20 lines
451 B
C#
20 lines
451 B
C#
namespace ldap_cesi.DTOs.Inputs.Service;
|
|
|
|
public class SalarieUpdateDto
|
|
{
|
|
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!;
|
|
|
|
public int IdSite { get; set; }
|
|
|
|
public int IdService { get; set; }
|
|
} |