| 123456789101112131415161718192021222324252627282930 |
- import type { IUser } from "../auth/User"
- import type { IChannelApiData } from "./Channel"
- export interface ISuggestionData {
- id: string;
- uid: string;
- book: number;
- paragraph: number;
- word_start: number;
- word_end: number;
- channel: IChannelApiData;
- content: string;
- html: string;
- editor: IUser;
- created_at: string;
- updated_at: string;
- }
- export interface ISuggestionResponse {
- ok: boolean;
- message: string;
- data: ISuggestionData;
- }
- export interface ISuggestionListResponse {
- ok: boolean;
- message: string;
- data: {
- rows: ISuggestionData[];
- count: number;
- };
- }
|