diff --git a/AccountManager.py b/AccountManager.py
new file mode 100644
index 0000000000000000000000000000000000000000..8279f8f6d02630f8092df0ff06e1aa6fe9c4d1dd
--- /dev/null
+++ b/AccountManager.py
@@ -0,0 +1,6 @@
+from User import User
+
+class AccountManager(User):
+
+    def __init__(self):
+        self.name
\ No newline at end of file
diff --git a/CinemaManager.py b/CinemaManager.py
new file mode 100644
index 0000000000000000000000000000000000000000..ce12521827c9cfb45576490d3d3db5a626cd5862
--- /dev/null
+++ b/CinemaManager.py
@@ -0,0 +1,6 @@
+from User import User
+
+class CinemaManager(User):
+
+    def __init__(self):
+        self.name
\ No newline at end of file
diff --git a/Club.py b/Club.py
new file mode 100644
index 0000000000000000000000000000000000000000..adf54755ec8dd48df5c18c832c0361ff931750c1
--- /dev/null
+++ b/Club.py
@@ -0,0 +1,6 @@
+class Club:
+
+    def __init__(self):
+        self.name
+        self.addressDetails = []
+        self.contact
diff --git a/ClubRepresentative.py b/ClubRepresentative.py
new file mode 100644
index 0000000000000000000000000000000000000000..f0b84d719af5d9bc9038335948c7bfcc7dda3064
--- /dev/null
+++ b/ClubRepresentative.py
@@ -0,0 +1,10 @@
+from User import User
+
+class ClubRepresentative(User):
+
+    def __init__(self):
+        self.firstName
+        self.lastName
+        self.dob
+        self.clubRepNumber
+        self.clubPassword
\ No newline at end of file
diff --git a/Film.py b/Film.py
new file mode 100644
index 0000000000000000000000000000000000000000..933763f4cd73a30c4416b4d4df024ee6f66cf4cf
--- /dev/null
+++ b/Film.py
@@ -0,0 +1,7 @@
+class Film:
+
+    def __init__(self):
+        self.title
+        self.ageRating
+        self.duration
+        self.description
\ No newline at end of file
diff --git a/Ticket.py b/Ticket.py
new file mode 100644
index 0000000000000000000000000000000000000000..2c2a2829b7bedc0202686f361ab7e110d288a2b1
--- /dev/null
+++ b/Ticket.py
@@ -0,0 +1,10 @@
+from this import d
+
+
+class Ticket:
+
+    def __init__(self):
+        self.isClubTicket
+        self.film
+        self.time
+        self.
\ No newline at end of file
diff --git a/User.py b/User.py
new file mode 100644
index 0000000000000000000000000000000000000000..21d524e85bee2c5ba6bbfd6cd1de20102cfcc939
--- /dev/null
+++ b/User.py
@@ -0,0 +1,4 @@
+class User:
+
+    def __init__(self):
+        self.name
\ No newline at end of file