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

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);
}
}