Base ViewModel infrastructure for the Dreamine MVVM framework.
This package provides the foundational components required to build ViewModels in applications that use the Dreamine MVVM architecture.
Dreamine.MVVM.ViewModels defines the base structures used when implementing ViewModels in the Dreamine ecosystem.
It serves as the core layer where ViewModel-related patterns and conventions are defined.
Typical responsibilities include:
- base ViewModel abstractions
- common MVVM patterns
- integration with Dreamine commands and bindings
- infrastructure for property notification
The ViewModel layer follows the principles used across the Dreamine framework.
Design objectives:
- minimal dependencies
- clear MVVM separation
- lightweight base classes
- compatibility with source generators and command systems
The goal is to keep ViewModels simple while enabling powerful framework features.
Within the Dreamine MVVM ecosystem this package represents the ViewModel Layer.
Dreamine.MVVM.Interfaces
↑
Dreamine.MVVM.Commands
↑
Dreamine.MVVM.ViewModels
↑
Application ViewModels
Application-level ViewModels typically inherit from classes defined in this package.
dotnet add package Dreamine.MVVM.ViewModelsOr add to the project file:
<PackageReference Include="Dreamine.MVVM.ViewModels" Version="1.0.0" />- .NET 8.0
MIT License