diff --git a/cypress/platform/class.html b/cypress/platform/class.html
index 1b6fe88a6..4cd58cda8 100644
--- a/cypress/platform/class.html
+++ b/cypress/platform/class.html
@@ -20,7 +20,7 @@
+
%%{init: {'theme': 'base', 'fontFamily': 'arial', 'themeVariables': { 'primaryColor': '#ff0000'}}}%%
classDiagram-v2
@@ -52,7 +52,7 @@
classB : method2() int
-
+
classDiagram-v2
classA -- classB : Inheritance
@@ -65,6 +65,24 @@
Galaxy --> "many" Star : Contains
<<interface>> Customer
<<Service>> Galaxy
+
+ class BankAccount{
+ +String owner
+ +BigDecimal balance
+ +deposit(amount) bool
+ +withdrawl(amount) int
+ }
+
+ class Square~Shape~{
+ int id
+ List~int~ position
+ setPoints(List~int~ points)
+ getPoints() List~int~
+}
+
+Square : -List~string~ messages
+Square : +setMessages(List~string~ messages)
+Square : +getMessages() List~string~