<What is your way to come up the class name?> I tr...
# stackoverflow
u
What is your way to come up the class name? I try to create a library with submodules. The main problem by now is class naming. I understand what the layout to be do, but cant give it name. For example, there is class ApiUntitled that contains property created from Retrofit Interface and no anything. How it can be name? class ApiUntitled(requestState: RequestState) { private val factory = ApiFactory(requestState) val playlist = factory.create(IPlaylistApi::class.java) val artist = factory.create(IArtistApi::class.java)...