import { Document } from "mongoose";
import { IUserModelAttributes } from "../entities/user.entity";
import { IAppModelInferCreation } from "./app.dto";
export interface IUserModelInferCreation extends IUserModelAttributes, Document {
    app: IAppModelInferCreation[];
}
