You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Defines the contract for mapping Kontent.ai content item fields to model properties.
/// </summary>
public interface IPropertyMapper
{
/// <summary>
/// Determines whether the given property corresponds with a given field.
/// </summary>
/// <param name="modelProperty">CLR property to be compared with <paramref name="fieldName"/>.</param>
/// <param name="fieldName">Name of the field in <paramref name="contentType"/>.</param>
/// <param name="contentType">Content type containing <paramref name="fieldName"/>.</param>
/// <returns>TRUE if <sparamref name="modelProperty"/> is a CLR representation of <paramref name="fieldName"/> in <paramref name="contentType"/>.</returns>