I'm basically using a class as a simple holder of data, but I don't actually need any of the generated data class methods. The class is just the primary constructor declaration with no body. As a dataclass, this is fine, but as a normal class I get warnings:
"Property foo is never used". I don't understand the reasoning here.