import { Document, Types } from "mongoose";

export interface IGasStationReview extends Document {
  gasStationId: Types.ObjectId;
  userId: Types.ObjectId;
  rating: number;
  comment?: string | null;
  createdAt: Date;
  updatedAt: Date;
}
