Fix typo in priceThreshholdRub

This commit is contained in:
R3ality
2025-07-27 03:30:04 +03:00
parent 8c52c15d6e
commit 765adcac5e
2 changed files with 2 additions and 2 deletions
@@ -263,7 +263,7 @@
"adjustPriceWhenBelowHandbookPrice": false,
"handbookPriceMultiplier": 1.1,
"maxPriceDifferenceBelowHandbookPercent": 64,
"priceThreshholdRub": 20000
"priceThresholdRub": 20000
},
"offerItemCount": {
"default": {
@@ -357,7 +357,7 @@ public record OfferAdjustment
/// <summary>
/// What is the minimum rouble price to consider adjusting price of item
/// </summary>
[JsonPropertyName("priceThreshholdRub")]
[JsonPropertyName("priceThresholdRub")]
public double PriceThresholdRub { get; set; }
}