您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ILuExpressionConverter.cs 598B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. using System.Linq.Expressions;
  3. using Luticate2.Auth.Business.ExpressionConverter;
  4. using Luticate2.Auth.Dbo.Result;
  5. namespace Luticate2.Auth.Interfaces
  6. {
  7. public interface ILuExpressionConverter
  8. {
  9. LuResult<Expression> ConvertExpression(Stack<Expression> expressions, Expression baseExpression, LuExpressionConverterOptions options);
  10. }
  11. public interface ILuExpressionConverter<TTypeFrom> : ILuExpressionConverter
  12. {
  13. }
  14. public interface ILuExpressionConverter<TTypeFrom, TTypeTo> : ILuExpressionConverter<TTypeFrom>
  15. {
  16. }
  17. }