10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
export interface JsonToType {
|
|
id: number;
|
|
title: string;
|
|
json_data: string;
|
|
type_data: string;
|
|
created_at: string;
|
|
updated_at: string;
|
|
is_active: boolean;
|
|
}
|