diff --git a/WeC/Cards.cpp b/WeC/Cards.cpp
deleted file mode 100644
index 1de8f62a8c43fa9e758697e3eeb39a484ded8b21..0000000000000000000000000000000000000000
--- a/WeC/Cards.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-
-//Aufgabe 2
-
-#include <iostream>
-
-using namespace std;
-
-class Cards {
-
-private:
-    string name;
-    string mana;
-    string cmc;
-    string type;
-    string count;
-
-public:
-    //setter
-    void setName(string name) {
-        this->name = name;
-    }
-    //getter Name
-    string getName() {
-        return name;
-    }
-
-    void setMana(string mana) {
-        this->mana = mana;
-    }
-
-    string getMana() {
-        return mana;
-    }
-
-    void setCount(string count) {
-        this->count = count;
-    }
-
-    string getCount() {
-        return count;
-    }
-
-    void setCmc(string cmc) {
-        this->cmc = cmc;
-    }
-
-    string getCmc() {
-        return cmc;
-    }
-
-    void setType(string type) {
-        this->type = type;
-    }
-
-    string getType() {
-        return type;
-    }
-};