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