mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 19:57:52 +01:00
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
|
|
interface IPostStatusChange {
|
||
|
|
postStatusId: number;
|
||
|
|
userFullName: string;
|
||
|
|
userEmail: string;
|
||
|
|
updatedAt: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default IPostStatusChange;
|