finished list input + added proper prefix rendering

This commit is contained in:
2024-10-27 11:33:50 +01:00
parent ce15717c7d
commit 85a45ece55
9 changed files with 114 additions and 25 deletions

View File

@@ -23,6 +23,7 @@ public sealed class AdminPageProperty {
public Type SelectorType { get; set; }
public Func<object, bool> Validator { get; set; }
public Func<object, string, object> Parser { get; set; }
public object GetValue(object entry) {
return entry.GetType().GetProperty(Name)?.GetValue(entry);