Files
AP-WEB-PF3/PF3/Endpoint/CreateTruckEndpoint.cs
2025-10-02 17:52:40 +02:00

9 lines
208 B
C#

using System.Net;
using PF3.DTO.Truck.Request;
using PF3.DTO.Truck.Response;
namespace PF3.Endpoint;
public class CreateTruckEndpoint(PF3DbContext pf3DbContext):EndPoint<CreateTruckDto, ReadTruckDto>
{
}