Modifs de noms et providers
This commit is contained in:
@@ -3,4 +3,5 @@ namespace PyroFetes.DTO.Provider.Request;
|
||||
public class CreateProviderDto
|
||||
{
|
||||
public decimal Price { get; set; }
|
||||
public int ProviderTypeId { get; set; }
|
||||
}
|
||||
@@ -4,4 +4,6 @@ public class GetProviderDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public decimal Price { get; set; }
|
||||
|
||||
public int ProviderTypeId { get; set; }
|
||||
}
|
||||
@@ -2,6 +2,10 @@ namespace PyroFetes.DTO.Staff.Request;
|
||||
|
||||
public class CreateStaffDto
|
||||
{
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? Profession { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? F4T2NumberApproval { get; set; }
|
||||
public DateOnly F4T2ExpirationDate { get; set; }
|
||||
}
|
||||
@@ -3,6 +3,10 @@ namespace PyroFetes.DTO.Staff.Response;
|
||||
public class GetStaffDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? Profession { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? F4T2NumberApproval { get; set; }
|
||||
public DateOnly F4T2ExpirationDate { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user