2025-06-06 16:00:39 +08:00

10 lines
217 B
C#

using System;
namespace VOL.Core.ModelBinder
{
public class BinderObject<T> where T : class
{
public Type ModelType { get; set; }
public Action<Func<T, object>> Filter { get; set; }
}
}