mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
|
|
interface IPostStatusChangeJSON {
|
||
|
|
post_status_id: number;
|
||
|
|
user_full_name: string;
|
||
|
|
user_email: string;
|
||
|
|
updated_at: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default IPostStatusChangeJSON;
|