Python - dataclass decorator
As the Real Python article [Data Classes in Python 3.7+ (Guide)][3] says:
One new and exciting feature coming in Python 3.7 is the data class. A data class is a class typically containing mainly data, although there aren’t really any restrictions. It is created using the …