Răsfoiți Sursa

add ISentInChapterListResponse

visuddhinanda 2 ani în urmă
părinte
comite
ddd0fbceef
1 a modificat fișierele cu 18 adăugiri și 0 ștergeri
  1. 18 0
      dashboard/src/components/api/Channel.ts

+ 18 - 0
dashboard/src/components/api/Channel.ts

@@ -52,3 +52,21 @@ export interface IApiResponseChannelList {
     count: number;
   };
 }
+
+export interface ISentInChapterListResponse {
+  ok: boolean;
+  data: ISentInChapterListData;
+  message: string;
+}
+
+export interface ISentInChapterListData {
+  rows: ISentInChapterListDataRow[];
+  count: number;
+}
+
+export interface ISentInChapterListDataRow {
+  book: number;
+  paragraph: number;
+  word_begin: number;
+  word_end: number;
+}