Make vault storages work

This commit is contained in:
TheXamlGuy
2024-04-28 16:04:05 +01:00
parent bc55c4649b
commit 7e980dbfce
6 changed files with 168 additions and 65 deletions
+1 -1
View File
@@ -7,4 +7,4 @@ public record Changed
public static Changed<TValue> As<TValue>(TValue value) => new(value);
public static Changed<TValue> As<TValue>() where TValue : new() => new(new TValue());
}
}