From b3deb8c5d92dd616042ea9e265c197abe02f995c Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Mon, 21 Nov 2022 16:34:39 -0600 Subject: AƱadido controlador de rifas MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Profiles/RaffleProfile.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Profiles/RaffleProfile.cs (limited to 'Profiles') diff --git a/Profiles/RaffleProfile.cs b/Profiles/RaffleProfile.cs new file mode 100644 index 0000000..4b872b3 --- /dev/null +++ b/Profiles/RaffleProfile.cs @@ -0,0 +1,11 @@ +using AutoMapper; +using BackendPIA.Models; +using BackendPIA.Forms; + +namespace BackendPIA.Profiles { + public class RaffleProfile : Profile { + public RaffleProfile() { + CreateMap().ReverseMap(); + } + } +} -- cgit v1.2.3