Просмотр исходного кода

add ISentInChapterListResponse

visuddhinanda 2 лет назад
Родитель
Сommit
ddd0fbceef
1 измененных файлов с 18 добавлено и 0 удалено
  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;
     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;
+}