Property casing 
| ID | NAMING-8 |
| Title | Property names shall be UpperCamelCased. |
| Priority | Recommended |
| Severity level | 8 |
| Description | Class property names shall be UpperCamelCased (PascalCased). |
| Rationale | Consistency in class property naming improves readability of the code. Using a different naming convention for properties and methods/functions allows for a clear distinction between method calls and property references. |
Avoid:
Chair.armRest
Chair.sell_price
Instead use:
Chair.ArmRest
Chair.SellPrice