Property casing cc4m_logo_inline

IDNAMING-8
TitleProperty names shall be UpperCamelCased.
PriorityRecommended
Severity level8
DescriptionClass property names shall be UpperCamelCased (PascalCased).
RationaleConsistency 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