import { Model, Optional } from "sequelize";
export interface IFollowAttributes {
    id: string;
    projectId: string;
    followerId: string;
    followedId: string;
    createdAt: Date;
}
export interface IFollowCreationAttributes extends Optional<IFollowAttributes, "id" | "createdAt"> {
}
export default interface IFollow extends Model<IFollowAttributes, IFollowCreationAttributes>, IFollowAttributes {
}
