import { BaseDTO } from '../base/BaseDTO'; import { PropertyType } from '../base/decorators'; import { SpecialAuctionListItemDTO } from './SpecialAuctionListItemDTO'; export class SpecialAuctionListPageDTO extends BaseDTO { num = 192; pageId = 1; listCache = 0; @PropertyType(SpecialAuctionListItemDTO) list: SpecialAuctionListItemDTO[] = []; }