mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 13:24:05 -06:00
377 B
377 B
| title | aliases | tags | |
|---|---|---|---|
| model-view-controller-pattern | MVC |
|
Model: An object carrying data
- handles data logiv
- interacts with database
View: The visualisation of the data that model contains
- rendered dynamically
Controller: Controls the data flow into model object and updates the view whenever data changes. Keeps view and model separate.