v5.3
Enhancements
- Minimal API as a lightweight alternative to base view model class inheritance (documentation).
Example:
appBuilder.MapVM("HelloWorld", () => new
{
Greetings = "Hello World",
ServerTime = Observable.Interval(TimeSpan.FromSeconds(1).Select(_ => DateTime.Now)
});