diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-12-10 18:49:06 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-12-10 18:49:06 +0200 |
| commit | e2171a923ab95ba031c08fe068a7e3ed73d0193d (patch) | |
| tree | 0a5d8831a998dfc0c68d82053a948bb5112e2d2d /Models/Profiles | |
| parent | aa1f51c5988926fb3b3e35df4904f60ecae10686 (diff) | |
| download | DevHive-e2171a923ab95ba031c08fe068a7e3ed73d0193d.tar DevHive-e2171a923ab95ba031c08fe068a7e3ed73d0193d.tar.gz DevHive-e2171a923ab95ba031c08fe068a7e3ed73d0193d.zip | |
AutoMapper rework extravaganza
Diffstat (limited to 'Models/Profiles')
| -rw-r--r-- | Models/Profiles/UserProfile.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Models/Profiles/UserProfile.cs b/Models/Profiles/UserProfile.cs new file mode 100644 index 0000000..f076336 --- /dev/null +++ b/Models/Profiles/UserProfile.cs @@ -0,0 +1,14 @@ +using Models.Classes; +using Models.DTOs; +using AutoMapper; + +namespace Models.Profiles +{ + public class UserProfile : Profile + { + public UserProfile() + { + // CreateMap<UserDTO, User>(); + } + } +} |
