2025-09-25 14:37:10 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2025-10-09 16:26:44 +08:00
|
|
|
|
namespace LM.Core.ModelBinder
|
2025-09-25 14:37:10 +08:00
|
|
|
|
{
|
|
|
|
|
|
public class BinderObject<T> where T : class
|
|
|
|
|
|
{
|
|
|
|
|
|
public Type ModelType { get; set; }
|
|
|
|
|
|
public Action<Func<T, object>> Filter { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|