Files
pkgdash/ui/src/app/api/models/comment-lookup-rsp.ts
Vasiliy Tolstov eb4daf33f1 rename
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2023-08-20 14:19:57 +03:00

7 lines
138 B
TypeScript

/* tslint:disable */
/* eslint-disable */
import { Comment } from './comment';
export interface CommentLookupRsp {
comment?: Comment;
}