From d5d585d0e7c8b09ca5a6ea81fd9054b8b52a46b7 Mon Sep 17 00:00:00 2001 From: Niclas Kristek Date: Thu, 3 Oct 2019 01:11:59 +0200 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a3ac26d..f863556 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,8 @@ For most applications, it is recommended that viewmodels inherit from the [ViewM Commands may inherit from either [ViewModelCommand<>](https://github.com/nkristek/Smaragd/blob/master/src/Smaragd/Commands/ViewModelCommand.cs) or [AsyncViewModelCommand<>](https://github.com/nkristek/Smaragd/blob/master/src/Smaragd/Commands/AsyncViewModelCommand.cs) ([more info](https://github.com/nkristek/Smaragd/wiki/Commands)). +For an overview of the provided interfaces and classes please visit the [documentation](https://github.com/nkristek/Smaragd/wiki/Home#Overview). + ## Why another MVVM library? This library originated in my other project [Stein](https://github.com/nkristek/Stein) and was subsequently moved to its own repository and nuget package. The goal is to provide a great yet minimal foundation which also promotes a good code style. Nearly everything is marked virtual ([except events](https://msdn.microsoft.com/en-us/library/hy3sefw3.aspx)) so you can customize it to fit your needs.