Create MVC.md

This commit is contained in:
Angelos Chalaris
2018-08-30 13:18:09 +03:00
committed by GitHub
parent fb65a97065
commit f3ae522985

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.