add GetComments and update proto
This commit is contained in:
9
ui/src/app/api/models/comment.ts
Normal file
9
ui/src/app/api/models/comment.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export interface Comment {
|
||||
created?: string;
|
||||
id?: number;
|
||||
package?: number;
|
||||
text?: string;
|
||||
updated?: string;
|
||||
}
|
6
ui/src/app/api/models/get-comments-rsp.ts
Normal file
6
ui/src/app/api/models/get-comments-rsp.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import { Comment } from './comment';
|
||||
export interface GetCommentsRsp {
|
||||
comments?: Array<Comment>;
|
||||
}
|
Reference in New Issue
Block a user