All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 7m16s
7 lines
171 B
C#
7 lines
171 B
C#
using Domain.Dtos;
|
|
|
|
public class QuoteAuthorizationRequest
|
|
{
|
|
public int QuoteId { get; set; }
|
|
public List<QuoteAuthorizationDto>? Items { get; set; } = new();
|
|
} |