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

31 lines
1.2 KiB
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
2026-06-23 17:34:45 +06:00
public class IntegrationMaterialResponse : ResponseBase
{
public int MeterialId { get; set; }
public string MaterialType { get; set; }
public string MaterialTypeDescription { get; set; }
public string MaterialCode { get; set; }
public string MaterialDescription { get; set; }
public string MaterialGroupCode { get; set; }
public string MaterialGroupDescription { get; set; }
public string BaseUnitOfMeasure { get; set; }
public string SalesUnitOfMeasure { get; set; }
public decimal UnitConversionWithBaseUoM { get; set; }
public string PlantCode { get; set; }
public string PlantDescription { get; set; }
public string StorageLocationCode { get; set; }
public string StorageLocationDescription { get; set; }
public string SalesOrganization { get; set; }
public string SalesOrganizationDescription { get; set; }
2026-06-30 18:57:11 +06:00
public string BrandCode { get; set; }
public string BrandName { get; set; }
}
public class MaterialIntegrationReqResponse : ResponseBase
{
public string MaterialCode { get; set; }
public bool IsUpdated { get; set; }
}