Browse Source

add IDeleteResponse

visuddhinanda 3 years ago
parent
commit
1d5cb2f5dc
1 changed files with 6 additions and 0 deletions
  1. 6 0
      dashboard/src/components/api/Article.ts

+ 6 - 0
dashboard/src/components/api/Article.ts

@@ -121,3 +121,9 @@ export interface IArticleMapListResponse {
     count: number;
     count: number;
   };
   };
 }
 }
+
+export interface IDeleteResponse {
+  ok: boolean;
+  message: string;
+  data: number;
+}