using StructureHelperCommon.Infrastructures.Interfaces; using System.Reflection; namespace DataAccess.JsonConverters { /// /// Helper logic to check if a property should be ignored /// public interface IShouldIgnorePropertyLogic : ILogic { bool ShouldIgnoreProperty(PropertyInfo prop); } }