using StructureHelperCommon.Infrastructures.Interfaces; using System.Reflection; namespace DataAccess.JsonConverters { /// /// Helper logic to get the property name, considering [JsonProperty] and [JsonPropertyName] attributes /// public interface IGetPropertyNameLogic : ILogic { string GetPropertyName(PropertyInfo prop); } }