import { Document, Types } from "mongoose";

export interface IOtp extends Document {
    userId: Types.ObjectId;
    otp: string;
    expiry: Date;
    /** Set when OTP is sent — used by verify-otp (not sent in verify request). */
    reason?: string;
}