Implemented deferred entry manipulation

This commit is contained in:
2025-01-28 18:10:56 +01:00
parent 5a342e2c53
commit fecbc0717b
9 changed files with 83 additions and 37 deletions

View File

@@ -0,0 +1,8 @@
using System.Reflection;
namespace HopFrame.Web.Models;
public class PropertyChange(PropertyInfo info, object? value) {
public object? Value { get; set; } = value;
public PropertyInfo Property { get; set; } = info;
}