satupeta-main/shared/types/news.ts
2026-01-27 09:31:12 +07:00

8 lines
124 B
TypeScript

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