mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
interface IPostStatusChange {
|
|
postStatusId: number;
|
|
userFullName: string;
|
|
userEmail: string;
|
|
createdAt: string;
|
|
}
|
|
|
|
export default IPostStatusChange; |