Server/project/src/models/spt/hideout/ScavCaseRewardCountsAndPrices.ts

14 lines
312 B
TypeScript
Raw Normal View History

2023-03-03 16:23:46 +01:00
export interface ScavCaseRewardCountsAndPrices
{
Common: RewardCountAndPriceDetails,
Rare: RewardCountAndPriceDetails,
Superrare: RewardCountAndPriceDetails
2023-03-03 16:23:46 +01:00
}
export interface RewardCountAndPriceDetails
{
minCount: number,
maxCount: number,
minPriceRub: number,
maxPriceRub: number
}