export interface IRating {
    userId: string;
    rating: number;
    comment?: string;
    createdAt: Date;
}
