| | |
| | | export interface UserReviewsConsultantsParams{ |
| | | import { SatisfactionType } from './enum/satisfaction-type'; |
| | | export interface UserReviewParams{ |
| | | appointmentId: number, |
| | | score : number, |
| | | type : SatisfactionType, |
| | | } |
| | | |
| | | export interface NotificationList { |
| | |
| | | readDate: string; |
| | | } |
| | | |
| | | export interface UserReviewPlatformParams { |
| | | appointmentId: number; |
| | | score : number; |
| | | } |
| | | |
| | | export interface UserReviewPlatformRes { |
| | | agentNo? : string; |
| | | appointmentId: number; |
| | | customerId : string; |
| | | id : number, |
| | | score : string; |
| | | type : 'APPOINTMENT' | 'SYSTEM'; |
| | | type : SatisfactionType; |
| | | } |