mirror of
https://github.com/astuto/astuto.git
synced 2026-07-10 12:31:47 +02:00
7 lines
101 B
TypeScript
7 lines
101 B
TypeScript
interface IPostStatus {
|
|
id: number;
|
|
name: string;
|
|
color: string;
|
|
}
|
|
|
|
export default IPostStatus; |