OnlineSalesAutoCrop/Api/OnlineSalesAutoCrop.CoreAPI.Models/Responses/Integrations/IntegrationEmployeeResponse.cs

39 lines
1.5 KiB
C#
Raw Normal View History

2026-06-16 19:17:16 +06:00
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
2026-06-23 17:34:45 +06:00
public class IntegrationEmployeeResponse : ResponseBase
2026-06-16 19:17:16 +06:00
{
public int EmployeeId { get; set; }
2026-06-16 19:17:16 +06:00
public string EmployeeVendorCode { get; set; }
public string EmployeeVendorName { get; set; }
public string Designation { get; set; }
2026-06-16 19:17:16 +06:00
public string DesignationDescription { get; set; }
public string MobileNo { get; set; }
public string Mail { get; set; }
public string CompanyCode { get; set; }
public string CompanyName { get; set; }
public string SalesOrg { get; set; }
2026-06-16 19:17:16 +06:00
public string SalesOrgDescription { get; set; }
public string DistChannel { get; set; }
2026-06-16 19:17:16 +06:00
public string DistChannelDescription { get; set; }
public string Division { get; set; }
2026-06-16 19:17:16 +06:00
public string DivisionDescription { get; set; }
public string RegionAreaCode { get; set; }
public string RegionAreaDescription { get; set; }
public string AreaAVSalesUnitCode { get; set; }
public string AreaAVSalesUnitDescription { get; set; }
public string Territory { get; set; }
2026-06-16 19:17:16 +06:00
public string TerritoryDescription { get; set; }
public string Plant { get; set; }
2026-06-16 19:17:16 +06:00
public string PlantDescription { get; set; }
public string Status { get; set; }
public string StatusDescription { get; set; }
}
public class EmployeeIntegrationReqResponse : ResponseBase
{
2026-06-17 13:51:19 +06:00
public string EmployeeVendorCode { get; set; }
public string CompanyCode { get; set; }
2026-06-17 13:51:19 +06:00
public bool IsUpdated { get; set; }
2026-06-16 19:17:16 +06:00
}