forked from sanchezvem/PyroFetes
8 lines
203 B
C#
8 lines
203 B
C#
namespace PyroFetes.DTO.Quotation.Request;
|
|
|
|
public class UpdateQuotationDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Message { get; set; }
|
|
public string? ConditionsSale { get; set; }
|
|
} |