Create MVC.md

This commit is contained in:
Angelos Chalaris
2018-08-30 13:18:09 +03:00
committed by GitHub
parent 7e1fa1ac5b
commit 6ce5437703

4
glossary/MVC.md Normal file
View File

@ -0,0 +1,4 @@
### MVC
MVC stands for Model-View-Controller and is a software design pattern, emphasizing separation of concerns (logic and display).
The Model part of the MVC pattern refers to the data and business logic, the View handles the layout and display, while the Controller routes commands to the model and view parts.