export interface UserSource {
    id: string;
    userId: string;
    reliabilityScore: number;
    sourceId: string;
    createdAt: Date;
    updatedAt: Date;
}
