namespace TIAM.Entities.Transfers; public interface ITransfeDestinationPrices { //public PriceType PriceType { get; set; } public double Price { get; set; } public double? Price2 { get; set; } public double? Price3 { get; set; } public double? ExtraPrice { get; set; } /// /// Kihajtás v. behajtás az ExtraPrice! Ha null, akkor mindkettő... /// public bool? ExtraPriceType { get; set; } }