phronCare/Domain/Dtos/QuoteAuthorizationRequest.cs
Leandro Hernan Rojas e276e9672c
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 7m16s
Add Authorization Quote
2025-05-29 19:21:57 -03:00

7 lines
171 B
C#

using Domain.Dtos;
public class QuoteAuthorizationRequest
{
public int QuoteId { get; set; }
public List<QuoteAuthorizationDto>? Items { get; set; } = new();
}