10 lines
217 B
C#
10 lines
217 B
C#
using System;
|
|
|
|
namespace VOL.Core.ModelBinder
|
|
{
|
|
public class BinderObject<T> where T : class
|
|
{
|
|
public Type ModelType { get; set; }
|
|
public Action<Func<T, object>> Filter { get; set; }
|
|
}
|
|
} |