public UIModel(UIProperty <IViewModel <TModel> > model) => _model = model;
internal FluentPropertyRegistration(string name, UiActor actor) { Actor = actor; Property = new UIProperty <TData>(name); actor.RegisterProperty(Property); }
public UICollectionProperty(UIProperty <IObservableCollection <TData> > property) { Property = property; _collection = property.Value; property.Subscribe(c => _collection = c); }