<@U5N7WE3B7> Could this work? ``` class Foo intern...
# getting-started
s
@chb0kotlin Could this work?
Copy code
class Foo internal constructor() {
    var bar: Int = 0
    private set

    var fuz: String = ""
    private set

    constructor(a: Int, b: String) : this(){
        this.bar = a
        this.fuz = b
    }
}

var foo = Foo(9,"hello world")
c
I need/want it to be a data class. When I do that I am required to have 1 primary constructor arg that must be initialized. Check the post above. Someone has been giving me good pointers