6 lines
106 B
TypeScript
6 lines
106 B
TypeScript
|
|
export interface IFeedbackRequestBody {
|
||
|
|
messageId?: string;
|
||
|
|
thumbup?: boolean;
|
||
|
|
feedback?: string;
|
||
|
|
}
|