first commit v3 initialiazed a temporary repository for darmanet client

This commit is contained in:
2026-09-08 16:04:01 +03:30
commit 5c7fd95052
216 changed files with 30050 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { Prop, Schema } from '@nestjs/mongoose';
import { Types } from 'mongoose';
@Schema({
timestamps: { createdAt: 'createdAt', updatedAt: 'updatedAt' },
versionKey: false,
})
export class RateModel {
@Prop({ _id: true, default: new Types.ObjectId() })
sessionId: Types.ObjectId;
@Prop({ type: String })
rate: string;
@Prop({ type: Date, default: Date.now })
createdAt: Date;
@Prop({ type: Date, default: Date.now })
createdAtDate: Date;
}