diff --git a/lib/Item.php b/lib/Item.php
deleted file mode 100644
index 699ec3da..00000000
--- a/lib/Item.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-interface ItemInterface{}
-
-/**
- * Object to store datas collect informations
- * FIXME : not sur this logic is the good, I think recast all is necessary
- */
-class Item implements ItemInterface{
-
-    // FIXME : use the arrayInterface instead
-    public $enclosures = array();
-    
-    public function __set($name, $value){
-        $this->$name = $value;
-    }
-
-    public function __get($name){
-        return (isset($this->$name) ? $this->$name : null);
-    }
-}