Don't use quoted names in classes to avoid confusion.

Noncompliant Code Example

Next declaration is valid, but can be confusing when it is used on the code.

Property "Hello_World";

Compliant Solution

Next declaration is preferred for clarity.

Property Hello_World;