41 lines
1.5 KiB
C#
41 lines
1.5 KiB
C#
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
|
|
|
|
public class EmployeeIntegrationResponse : ResponseBase
|
|
{
|
|
|
|
public int EmployeeVendorId { get; set; }
|
|
public string EmployeeVendorCode { get; set; }
|
|
public string EmployeeVendorName { get; set; }
|
|
public string DesignationCode { get; set; }
|
|
public string DesignationDescription { get; set; }
|
|
public string MobileNo { get; set; }
|
|
public string Email { get; set; }
|
|
public string SalesOrgCode { get; set; }
|
|
public string SalesOrgDescription { get; set; }
|
|
public string DistChannelCode { get; set; }
|
|
public string DistChannelDescription { get; set; }
|
|
public string DivisionCode { get; set; }
|
|
public string DivisionDescription { get; set; }
|
|
public string RegionAAl { get; set; }
|
|
public string AreaCode { get; set; }
|
|
public string AreaDescription { get; set; }
|
|
public string SalesUnitACCLCode { get; set; }
|
|
public string SalesUnitACCLDescription { get; set; }
|
|
public string TerritoryCode { get; set; }
|
|
public string TerritoryDescription { get; set; }
|
|
public string SalesOfficeCode { get; set; }
|
|
public string SalesOfficeDescription { get; set; }
|
|
public string PlantCode { get; set; }
|
|
public string PlantDescription { get; set; }
|
|
public string Status { get; set; }
|
|
public string StatusDescription { get; set; }
|
|
}
|
|
|
|
|
|
public class EmployeeIntegrationReqResponse : ResponseBase
|
|
{
|
|
public string EmployeeVendorCode { get; set; }
|
|
public string SalesOrgCode { get; set; }
|
|
public bool IsUpdated { get; set; }
|
|
|
|
} |