25 lines
903 B
C#
25 lines
903 B
C#
|
|
using System;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace OnlineSalesAutoCrop.CoreAPI.Models.Objects.Integrations;
|
|||
|
|
|
|||
|
|
public class IntegrationMaterialPrice
|
|||
|
|
{
|
|||
|
|
public int MaterialPriceId { get; set; }
|
|||
|
|
public string SalesOrg { get; set; }
|
|||
|
|
public string DistributionChannel { get; set; }
|
|||
|
|
public string CustomerNumber { get; set; }
|
|||
|
|
public string CustomerGroupCode { get; set; }
|
|||
|
|
public string MaterialCode { get; set; }
|
|||
|
|
public string ConditionType { get; set; }
|
|||
|
|
public string CalculationType { get; set; }
|
|||
|
|
public string PricingUnit { get; set; }
|
|||
|
|
public string UnitOfMeasure { get; set; }
|
|||
|
|
public DateTime ValidFrom { get; set; }
|
|||
|
|
public DateTime ValidTo { get; set; }
|
|||
|
|
public string Status { get; set; }
|
|||
|
|
public decimal ConditionValue { get; set; }
|
|||
|
|
public DateTime CreatedDate { get; set; }
|
|||
|
|
public DateTime ModifiedDate { get; set; }
|
|||
|
|
}
|