export interface UserIndustry {
    id: string;
    userId?: string;
    industryId: string;
    createdAt: Date;
    updatedAt: Date;
}
