Files

11 lines
219 B
C#
Raw Permalink Normal View History

2026-02-06 18:34:35 +08:00
using System;
namespace iMES.Core.ModelBinder
{
public class BinderObject<T> where T : class
{
public Type ModelType { get; set; }
public Action<Func<T, object>> Filter { get; set; }
}
}