From 6ce5437703a7f09960e90b3c7658c1d1844fe629 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Thu, 30 Aug 2018 13:18:09 +0300 Subject: [PATCH] Create MVC.md --- glossary/MVC.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 glossary/MVC.md diff --git a/glossary/MVC.md b/glossary/MVC.md new file mode 100644 index 000000000..d91769d72 --- /dev/null +++ b/glossary/MVC.md @@ -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.