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

30 lines
1.2 KiB
C#
Raw Normal View History

namespace OnlineSalesAutoCrop.CoreAPI.Models.Objects.Integrations;
public class EmployeeIntegration
{
public string EmployeeVendorCode { get; set; }
public string EmployeeVendorName { get; set; }
public string Designation { get; set; }
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; }
public string SalesOrgDescription { get; set; }
public string DistChannel { get; set; }
public string DistChannelDescription { get; set; }
public string Division { get; set; }
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; }
public string TerritoryDescription { get; set; }
public string Plant { get; set; }
public string PlantDescription { get; set; }
public string Status { get; set; }
public string StatusDescription { get; set; }
}