Senthil Nayagansenthilnayagan.hashnode.dev·Jul 24, 2022Case Class in ScalaWhat is a case class? Case classes are a special kind of class created using the keyword case. Case classes are excellent for data transfer objects and for representing immutable data. It is a type of class that is mostly utilised for data storage. c...62 readsScala