Files
StructureHelper/DataAccess/JsonConverters/Logics/IShouldIgnorePropertyLogic.cs
2024-09-08 17:47:46 +05:00

13 lines
346 B
C#

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