Files
iMES_Net/iMES.Core/ModelBinder/BinderObject.cs
2026-02-06 18:34:35 +08:00

11 lines
219 B
C#

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; }
}
}