Files
SecMPS/api_sqlsugar/VolPro.Core/ModelBinder/BinderObject.cs
2026-05-15 23:22:48 +08:00

11 lines
221 B
C#

using System;
namespace VolPro.Core.ModelBinder
{
public class BinderObject<T> where T : class
{
public Type ModelType { get; set; }
public Action<Func<T, object>> Filter { get; set; }
}
}