c77fb700创建于 2025年1月16日历史提交
/**
 * 无限列表展示的列表信息类
 */
export class InfiniteData {
  color: Resource;
  title: string;
  price: string;

  constructor(color: Resource, title: string, price: string) {
    this.color = color
    this.title = title
    this.price = price
  }
}