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.

ILuObjectConverter.cs 523B

12345678910111213141516171819
  1. using Luticate2.Auth.Utils.Business.ExpressionConverter;
  2. using Luticate2.Auth.Utils.Dbo.Fields;
  3. using Luticate2.Auth.Utils.Dbo.Result;
  4. namespace Luticate2.Auth.Utils.Interfaces
  5. {
  6. public interface ILuObjectConverter
  7. {
  8. LuResult<object> Convert(object srcObj, LuPartialFieldsDbo fields, LuExpressionConverterOptions options);
  9. }
  10. public interface ILuObjectConverter<TTypeFrom, TTypeTo> : ILuObjectConverter
  11. {
  12. }
  13. public interface ILuObjectConverterIdentity : ILuObjectConverter
  14. {
  15. }
  16. }