You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuConvertersOptions.cs 430B

123456789101112131415
  1. using System.Collections.Generic;
  2. using System.Linq.Expressions;
  3. using Luticate2.Auth.Utils.Interfaces;
  4. namespace Luticate2.Auth.Utils.Business.Converters
  5. {
  6. public class LuConvertersOptions
  7. {
  8. public IDictionary<ParameterExpression, Expression> Parameters { get; set; }
  9. public ILuConvertersTypeConverter TypeConverter { get; set; }
  10. public ILuConvertersAllocator Allocator { get; set; }
  11. }
  12. }