PAMapp/shared/models/reviews.model.ts
@@ -1,6 +1,8 @@ export interface UserReviewsConsultantsParams{ import { SatisfactionType } from './enum/satisfaction-type'; export interface UserReviewParams{ appointmentId: number, score : number, type : SatisfactionType, } export interface NotificationList { @@ -19,3 +21,12 @@ /** 已讀時間 */ readDate: string; } export interface UserReviewPlatformRes { agentNo? : string; appointmentId: number; customerId : string; id : number, score : string; type : SatisfactionType; }