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 { @@ -18,4 +20,13 @@ createdDate: string; /** 已讀時間 */ readDate: string; } } export interface UserReviewPlatformRes { agentNo? : string; appointmentId: number; customerId : string; id : number, score : string; type : SatisfactionType; }