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

14 lines
312 B
TypeScript
Raw Normal View History

2023-03-03 15:23:46 +00:00
export interface ScavCaseRewardCountsAndPrices
{
common: RewardCountAndPriceDetails,
rare: RewardCountAndPriceDetails,
superrare: RewardCountAndPriceDetails
}
export interface RewardCountAndPriceDetails
{
minCount: number,
maxCount: number,
minPriceRub: number,
maxPriceRub: number
}