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

14 lines
312 B
TypeScript

export interface ScavCaseRewardCountsAndPrices
{
Common: RewardCountAndPriceDetails,
Rare: RewardCountAndPriceDetails,
Superrare: RewardCountAndPriceDetails
}
export interface RewardCountAndPriceDetails
{
minCount: number,
maxCount: number,
minPriceRub: number,
maxPriceRub: number
}