diff --git a/CourseLibrary.API/ResourcesParameters/PropertyMapping.cs b/CourseLibrary.API/ResourcesParameters/PropertyMapping.cs new file mode 100644 index 0000000..875d682 --- /dev/null +++ b/CourseLibrary.API/ResourcesParameters/PropertyMapping.cs @@ -0,0 +1,19 @@ +using CourseLibrary.API.Services; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace CourseLibrary.API.ResourcesParameters +{ + public class PropertyMapping : IPropertyMapping + { + public Dictionary _mappingDictionary { get; private set; } + + public PropertyMapping(Dictionary mappingDictionary) + { + _mappingDictionary = mappingDictionary ?? + throw new ArgumentNullException(nameof(mappingDictionary)); + } + } +}