mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
|
|
interface ICommentJSON {
|
||
|
|
id: number;
|
||
|
|
body: string;
|
||
|
|
user_full_name: string;
|
||
|
|
updated_at: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default ICommentJSON;
|