using System.Collections.Generic; namespace UserManagement.Repository { public class PropertyMapping : IPropertyMapping { public Dictionary _mappingDictionary { get; private set; } public PropertyMapping(Dictionary mappingDictionary) { _mappingDictionary = mappingDictionary; } } }