The property looks like this:
private static PropertyInfo<bool> FooProperty=
RegisterProperty<bool>(c => c.Foo, "Foo Friendly Name");
public bool Foo
{
get { return GetProperty(FooProperty); }
private set { SetProperty(FooProperty, value); }
}
I would like to recieve "Foo Friendly Name" from outside the class.