PageDTO.ets 231 Bytes
import { GroupDTO } from './GroupDTO';

/**
 * Page数据DTO
 */
export interface PageDTO {
  id: number; // 页面id
  name: string; // 页面名称
  description: string; // 描述
  groups: GroupDTO[]; // page下的group列表
}