This repository was archived by the owner on Jul 11, 2025. It is now read-only.

Description
For me, one of the main reasons to do front end development in C# is the ability to share models (DTOs) between ASP.NET CORE API and UI.
When using MVVM it is possible only to share interfaces because UI properties must implement INotifyPropertyChange.
In Blazor, sharing is possible as no interface is needed.
Commet seems to me the same as MVVM in this point of view as it needs INotifyProertyRead.
Is there any way / plan how to use shared DTO returned from API and bind to them from UI ?