xiaojiao
2026-03-23 f02d3a8ffc05a10a64859b2a16d5d43c8abb0fb9
1
2
3
4
5
6
7
8
9
10
using System;
 
namespace WIDESEA_Core.ModelBinder
{
    public class BinderObject<T> where T : class
    {
        public Type ModelType { get; set; }
        public Action<Func<T, object>> Filter { get; set; }
    }
}