A class property, in some object-oriented programming languages, is a particular type of property that applies to a class rather than an instance of the class.
Class Property, in some object-oriented programming languages, is a special sort of class member, intermediate between a field (or data member) and a method.
Properties are read and written like fields, but property reads and writes are (usually) translated to get and set method calls.
See: - Properties (tag)