mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
interface IComment {
|
|
id: number;
|
|
body: string;
|
|
userFullName: string;
|
|
updatedAt: string;
|
|
}
|
|
|
|
export default IComment; |