2026-06-30 18:57:11 +06:00
|
|
|
|
using System;
|
2026-07-21 17:34:40 +06:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2026-06-30 18:57:11 +06:00
|
|
|
|
|
|
|
|
|
|
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
|
|
|
|
|
|
|
2026-07-21 17:34:40 +06:00
|
|
|
|
public class IntegrationBillingReqResponse : ResponseBase
|
2026-06-30 18:57:11 +06:00
|
|
|
|
{
|
2026-07-21 17:34:40 +06:00
|
|
|
|
public string InvoiceBillingDocumentNumber { get; set; } = string.Empty;
|
|
|
|
|
|
public DateTime BillingDate { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class IntegrationDeliveryReqResponse : ResponseBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public string DeliveryDocumentNo{ get; set; } = string.Empty;
|
|
|
|
|
|
public DateTime DeliveryDate { get; set; }
|
2026-06-30 18:57:11 +06:00
|
|
|
|
}
|
|
|
|
|
|
|