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();
|
|||
|
|
}
|