Add post status administration (#105)

This commit is contained in:
Riccardo Graziosi
2022-05-01 18:00:38 +02:00
committed by GitHub
parent c5148147e3
commit 5256ea911a
47 changed files with 1580 additions and 32 deletions

View File

@@ -0,0 +1,7 @@
interface IPostStatusJSON {
id: number;
name: string;
color: string;
}
export default IPostStatusJSON;