OnlineSalesAutoCrop/Api/OnlineSalesAutoCrop.CoreAPI.Models/Responses/Integrations/IntegrationPaymentTermResponse.cs
2026-06-28 19:02:40 +06:00

20 lines
598 B
C#

using System;
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
public class IntegrationPaymentTermResponse : ResponseBase
{
public int CreditCodeId { get; set; }
public string CreditCode { get; set; }
public string Description { get; set; }
public DateTime ValidFrom { get; set; }
public DateTime ValidTo { get; set; }
public string SalesOrg { get; set; }
}
public class IntegrationPaymentTermReqResponse : ResponseBase
{
public string CreditCode { get; set; }
public string SalesOrg { get; set; }
public bool IsUpdated { get; set; }
}