OnlineSalesAutoCrop/Api/OnlineSalesAutoCrop.CoreAPI.Models/Objects/Integrations/IntegrationCustomer.cs

42 lines
1.9 KiB
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace OnlineSalesAutoCrop.CoreAPI.Models.Objects.Integrations;
2026-06-16 17:22:46 +06:00
2026-06-23 17:34:45 +06:00
public class IntegrationCustomer
2026-06-16 17:22:46 +06:00
{
public string CustomerNumber { get; set; }
public string CustomerName { get; set; }
public string AccountGroup { get; set; }
public string AccountGroupDescription { get; set; }
public string CompanyCode { get; set; }
public string CompanyCodeDescription { get; set; }
public string SalesOrganization { get; set; }
public string SalesOrganizationDescription { get; set; }
public string DistributionChannel { get; set; }
public string DistributionChannelDescription { get; set; }
public string Division { get; set; }
public string DivisionDescription { get; set; }
public string MobileNumber { get; set; }
public string EmailAddress { get; set; }
public string BusinessTaxNumber { get; set; }
public decimal CreditLimit { get; set; }
public string SalesGroup { get; set; }
public string SalesGroupDescription { get; set; }
public string CustomerGroup { get; set; }
public string CustomerGroupDescription { get; set; }
public string CustomerPriceGroup { get; set; }
public string CustomerPriceGroupDescription { get; set; }
public string StatusCode { get; set; }
public string StatusDescription { get; set; }
public string PaymentTerms { get; set; }
public string PaymentTermsDescription { get; set; }
public string SearchTerm { get; set; }
public string AreaRegion { get; set; }
public string AreaRegionDescription { get; set; }
public string SalesUnitAreaAV { get; set; }
public string SalesUnitAreaAVDescription { get; set; }
public string Territory { get; set; }
public string TerritoryName { get; set; }
2026-06-16 17:22:46 +06:00
public string Plant { get; set; }
public string PlantName { get; set; }
}