Observable properties
In Trivial.Data namespace of Trivial.dll library.
Base observable properties
You can inherit the BaseObservableProperties class to implement your model with observable properties. Following is a sample.
public class NameValueObservableProperties<T> : BaseObservableProperties
{
public string Id
{
get => GetCurrentProperty<string>();
set => SetCurrentProperty(value);
}
}