8 lines
124 B
TypeScript
8 lines
124 B
TypeScript
|
|
export interface News {
|
||
|
|
id?: string;
|
||
|
|
name: string;
|
||
|
|
description: string;
|
||
|
|
thumbnail?: string;
|
||
|
|
is_active: boolean;
|
||
|
|
}
|