summaryrefslogtreecommitdiff
path: root/Profiles/PrizeProfile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Profiles/PrizeProfile.cs')
-rw-r--r--Profiles/PrizeProfile.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Profiles/PrizeProfile.cs b/Profiles/PrizeProfile.cs
new file mode 100644
index 0000000..46545ef
--- /dev/null
+++ b/Profiles/PrizeProfile.cs
@@ -0,0 +1,12 @@
+using AutoMapper;
+
+using BackendPIA.Models;
+using BackendPIA.Forms;
+
+namespace BackendPIA.Profiles {
+ public class PrizeProfile : Profile {
+ public PrizeProfile() {
+ CreateMap<PrizeForm, Prize>();
+ }
+ }
+} \ No newline at end of file