Develop the POJOs

Let’s learn to create Plain Old Java Objects (POJOs).

We'll cover the following...

Create POJO

For our todo application, let’s create two basic POJO classes, Todo and TodoType, in the io/educative/domains package with a few relevant properties, as well as getter and setter methods.

Let’s see what ...