Files
ZYZ/shared/domain/battleField/auction.ts

9 lines
183 B
TypeScript

import { RewardInter } from '../../pubUtils/interface'
export interface AuctionRewardInter {
goods: RewardInter;
basePrice: number;
maxPrice: number;
sort: number;
}