forked from Yara724/api
YARA-739, YARA-740, YARA-741
This commit is contained in:
39
src/claim-request-management/dto/user-rating.dto.ts
Normal file
39
src/claim-request-management/dto/user-rating.dto.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
import { ApiProperty } from "@nestjs/swagger";
|
||||
|
||||
export class UserRatingDto {
|
||||
@ApiProperty({
|
||||
type: Number,
|
||||
minimum: 0,
|
||||
maximum: 5,
|
||||
description: "سرعت پیشرفت پرونده",
|
||||
example: 4,
|
||||
})
|
||||
progressSpeed: number;
|
||||
|
||||
@ApiProperty({
|
||||
type: Number,
|
||||
minimum: 0,
|
||||
maximum: 5,
|
||||
description: "سهولت ثبت پرونده",
|
||||
example: 4,
|
||||
})
|
||||
registrationEase: number;
|
||||
|
||||
@ApiProperty({
|
||||
type: Number,
|
||||
minimum: 0,
|
||||
maximum: 5,
|
||||
description: "ارزیابی کلی",
|
||||
example: 5,
|
||||
})
|
||||
overallEvaluation: number;
|
||||
|
||||
@ApiProperty({
|
||||
type: String,
|
||||
required: false,
|
||||
description: "متن رضایت یا عدم آن",
|
||||
})
|
||||
comment?: string;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user