using System;
using System.Reflection;
namespace JSONAPI.Core
{
///
/// Allows configuring how to calculate JSON API keys based on CLR types and properties
///
public interface INamingConventions
{
///
/// Calculates the field name for a given property
///
///
///
string GetFieldNameForProperty(PropertyInfo property);
///
/// Calculates the resource type name for a CLR type
///
///
///
string GetResourceTypeNameForType(Type type);
}
}