satupeta-main/shared/types/news.ts

8 lines
124 B
TypeScript
Raw Normal View History

2026-01-27 02:31:12 +00:00
export interface News {
id?: string;
name: string;
description: string;
thumbnail?: string;
is_active: boolean;
}