10 lines
217 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
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; }
}
}