Browse Source

add IDeleteResponse

visuddhinanda 3 years ago
parent
commit
26fd038ceb
1 changed files with 5 additions and 0 deletions
  1. 5 0
      dashboard/src/components/api/Group.ts

+ 5 - 0
dashboard/src/components/api/Group.ts

@@ -62,3 +62,8 @@ export interface IGroupMemberDeleteResponse {
   message: string;
   data: boolean;
 }
+export interface IDeleteResponse {
+  ok: boolean;
+  message: string;
+  data: number;
+}