You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using NSwag.CodeGeneration.CSharp, the generated client DTOs by default implements INotifyPropertyChanged and array type is an ObservableCollection.
I am trying to understand the use case for this, are there any examples of concepts when the DTOs' INotifyPropertyChanged events are used?
Thanks.
The text was updated successfully, but these errors were encountered:
You can use these DTOs directly in XAML based apps with bindings and view models. In most cases this is not needed and you can use Poco instead of Inpc (class style) and change the used collection types...
In the next major version, we will change these defaults.
Hi,
When using
NSwag.CodeGeneration.CSharp
, the generated client DTOs by default implementsINotifyPropertyChanged
and array type is anObservableCollection
.I am trying to understand the use case for this, are there any examples of concepts when the DTOs'
INotifyPropertyChanged
events are used?Thanks.
The text was updated successfully, but these errors were encountered: