interface IPostStatusJSON {
id: number;
name: string;
color: string;
order: number;
show_in_roadmap: boolean;
}
export default IPostStatusJSON;