feat: working version with scopes.

This commit is contained in:
redglow
2026-07-18 12:09:43 +02:00
parent 23e160438f
commit 04f0b5ef16
15 changed files with 120 additions and 87 deletions
+1 -4
View File
@@ -38,9 +38,6 @@ public class ValueProvider<T>
private class GetterImplementation(T value) : IValueGetter<T>
{
public T Get()
{
return value;
}
public T Value => value;
}
}