YARA-739, YARA-740, YARA-741

This commit is contained in:
SepehrYahyaee
2026-01-28 15:34:38 +03:30
parent 8db56d38be
commit ae53ef6032
9 changed files with 305 additions and 25 deletions

View 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;
}