export interface Comment {
    id: string;
    fromUserId: string;
    comment: string;
    position: {
        x: number;
        y: number;
    };
    replies?: Comment[];
    parentId?: string;
    timestamp: string;
    targetUserId: string;
    isAdmin?: boolean;
}
