PropCache.cs
557 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace RCS.Model.Entity
{
public class PropCache
{
public string? ClassName { get; set; }
public string Name { get; set; }
public string? ClassFullName { get; set; }
public string Value { get; set; }
public Func<object, object>? Getter { get; set; }
public Action<object, object>? Setter { get; set; }
public string? Desc { get; set; }
}
}