Guest User

Untitled

a guest
Jul 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class TypeFilterExpression
  2. {
  3. private readonly Action<Func<Type, bool>> _callback;
  4.  
  5. public TypeFilterExpression(Action<Func<Type, bool>> _callback)
  6. {
  7. this._callback = _callback;
  8. }
  9.  
  10. // more to come...
  11. }
Add Comment
Please, Sign In to add comment