mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
7 lines
106 B
TypeScript
7 lines
106 B
TypeScript
|
|
interface IFollowJSON {
|
||
|
|
id: number;
|
||
|
|
user_id: number;
|
||
|
|
post_id: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default IFollowJSON;
|