forked from sanchezvem/PyroFetes
10 lines
279 B
C#
10 lines
279 B
C#
using PyroFetes.DTO.QuotationProduct.Response;
|
|
|
|
namespace PyroFetes.DTO.Quotation.Response;
|
|
|
|
public class GetQuotationDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Message { get; set; }
|
|
public List<GetQuotationProductDto>? GetQuotationProductDto { get; set; }
|
|
} |