@bit-ui-libs/common
Version:
This library was generated with [Nx](https://nx.dev).
22 lines (19 loc) • 366 B
text/typescript
export enum FeedbackEnum {
EXCELLENT = 'EXCELLENT',
GOOD = 'GOOD',
POOR = 'POOR',
VERY_POOR = 'VERY POOR',
}
export interface AddFeedbackRequest {
type: FeedbackEnum;
comment: string;
}
export interface Feedback {
id: string;
userId: string;
type: FeedbackEnum;
comment: string;
createdAt: string;
updatedBy: string;
updatedAt: string;
}