14 lines
388 B
C#
14 lines
388 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
|
|||
|
|
|
|||
|
|
public class IntegrationInvoiceReqResponse : ResponseBase
|
|||
|
|
{
|
|||
|
|
public string SalesOrderRefNo { get; set; }
|
|||
|
|
public string InvoiceDocumnentNo { get; set; }
|
|||
|
|
public DateTime InvoiceDate { get; set; }
|
|||
|
|
public string DeliveryRefNo { get; set; }
|
|||
|
|
public int NumberOfMaterial { get; set; }
|
|||
|
|
}
|
|||
|
|
|