7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import { Comment } from './comment';
|
|
export interface CommentListRsp {
|
|
comments?: Array<Comment>;
|
|
}
|