when using android room for data storage, is it acceptable to handle multiple models in a single dao ? thus far I have seen one model per dao i.e. User -> UserDao - I am wondering if putting User and Address in a UserDao is good practise
not kotlin but kotlin colored 2