···1313 followedCollectionsCount?: number; // Number of collections this user follows
1414}
15151616+// Extended User interface for contributors with contribution count
1717+export interface ContributorUser extends User {
1818+ contributionCount: number; // Number of cards this user contributed to the collection
1919+}
2020+1621// Type alias for inline profile objects (without isFollowing)
1722// Used for nested author objects in collections, cards, etc.
1823export type UserProfileDTO = Omit<User, 'isFollowing'>;