Files
Projet4/PyroFetes/DTO/HistoryOfApproval/Request/CreateHistoryOfApprovalDto.cs
T

8 lines
228 B
C#

namespace PyroFetes.DTO.HistoryOfApproval.Request;
public class CreateHistoryOfApprovalDto
{
public DateOnly DeliveryDate { get; set; }
public DateOnly ExpirationDate { get; set; }
public int StaffId { get; set; }
}