From 85aa8a6025ea645acaa05398cff864752a92af11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Mon, 6 Dec 2021 10:13:57 +0300 Subject: [PATCH] Update Object-Extensions.md --- docs/en/Object-Extensions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/Object-Extensions.md b/docs/en/Object-Extensions.md index 4c2b1b5454..bc4fc911c4 100644 --- a/docs/en/Object-Extensions.md +++ b/docs/en/Object-Extensions.md @@ -9,10 +9,10 @@ ABP Framework provides an **object extension system** to allow you to **add extr This is the interface to make a class extensible. It simply defines a `Dictionary` property: ````csharp -Dictionary ExtraProperties { get; } +ExtraPropertyDictionary ExtraProperties { get; } ```` -Then you can add or get extra properties using this dictionary. +`ExtraPropertyDictionary` class is inherited from the `Dictionary` class. You can add or get extra properties using this dictionary. ### Base Classes @@ -413,4 +413,4 @@ See the [Entity Framework Core Integration document](Entity-Framework-Core.md) f ## See Also -* [Module Entity Extensions](Module-Entity-Extensions.md) \ No newline at end of file +* [Module Entity Extensions](Module-Entity-Extensions.md)