satupeta-main/shared/types/news.ts
2026-02-23 12:21:05 +07:00

8 lines
124 B
TypeScript
Executable File

export interface News {
id?: string;
name: string;
description: string;
thumbnail?: string;
is_active: boolean;
}