mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 19:57:52 +01:00
9 lines
140 B
TypeScript
9 lines
140 B
TypeScript
|
|
interface ILikeJSON {
|
||
|
|
id: number;
|
||
|
|
user_id: number;
|
||
|
|
post_id: number;
|
||
|
|
full_name: string;
|
||
|
|
email: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default ILikeJSON;
|