mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
interface IPostStatus {
|
|
id: number;
|
|
name: string;
|
|
color: string;
|
|
order: number;
|
|
showInRoadmap: boolean;
|
|
}
|
|
|
|
export default IPostStatus; |