using System; using System.ComponentModel.DataAnnotations; namespace OnlineSalesAutoCrop.CoreAPI.Models.Objects.Integrations; public class IntegrationMaterial { 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; } public DateTime CreatedDate { get; set; } public DateTime? UpdatedDate { get; set; } }