From 9b911ebecf40c3deb7e2e952b75148d31531e5e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Sun, 25 Jul 2021 09:53:07 +0300 Subject: [PATCH] add language to yaml front matter --- domain-model/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/domain-model/README.md b/domain-model/README.md index 89cefee80..696fc41fd 100644 --- a/domain-model/README.md +++ b/domain-model/README.md @@ -4,11 +4,15 @@ title: Domain Model folder: domain-model permalink: /patterns/domain-model/ categories: Architectural +language: en tags: - Domain --- + ## Intent + Domain model pattern provides an object-oriented way of dealing with complicated logic. Instead of having one procedure that handles all business logic for a user action there are multiple objects and each of them handles a slice of domain logic that is relevant to it. + ## Explanation Real world example