turkmentv_front/models/channels.model.ts

10 lines
127 B
TypeScript
Raw Permalink Normal View History

2024-08-19 12:44:56 +00:00
export interface ChannelsModel {
data: Datum[];
}
export interface Datum {
id: number;
name: string;
image: string;
}