🧑Models

The model represents one object in YAML or database.

The model is updatable, savable, and deletable.

Every model must have a field that will be annotated Id or IdSection annotation

Object save(); //Saves new model to database or file

boolean delete(); //Deletes model from file or table

Object update(); //Updates new model to database or file

Last updated