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