|
@@ -273,8 +273,12 @@ export interface ISentencePrResponse {
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+export interface ISimSent {
|
|
|
|
|
+ sent: string;
|
|
|
|
|
+ sim: number;
|
|
|
|
|
+}
|
|
|
export interface ISentenceSimListResponse {
|
|
export interface ISentenceSimListResponse {
|
|
|
ok: boolean;
|
|
ok: boolean;
|
|
|
message: string;
|
|
message: string;
|
|
|
- data: { rows: string[]; count: number };
|
|
|
|
|
|
|
+ data: { rows: ISimSent[]; count: number };
|
|
|
}
|
|
}
|