12 lines
167 B
TypeScript
12 lines
167 B
TypeScript
|
|
export interface PageItemModel {
|
||
|
|
data: Data;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Data {
|
||
|
|
id: number;
|
||
|
|
title: string;
|
||
|
|
image: string;
|
||
|
|
mobile_image: string;
|
||
|
|
content: string;
|
||
|
|
}
|