phronCare/Domain/Dtos/QuoteAuthorizationRequest.cs

7 lines
171 B
C#
Raw Normal View History

2025-05-29 19:21:57 -03:00
using Domain.Dtos;
public class QuoteAuthorizationRequest
{
public int QuoteId { get; set; }
public List<QuoteAuthorizationDto>? Items { get; set; } = new();
}