I have generated class MyDto
and I want to add couple of new functions
fun MyDto.convert(foo: String): Bar {...
I have no choice - I have to put it to different file but in contrast to java it won't be a class but just a Kotlin file.
How should I call it ?
MyDtoUtils.kt
or myDtoUtils.kt
?
Is there any convention for that ?