Files
survey-beta/survey-beta/Mappers/Profiles/ChoiceProfile.cs
majed adel 3aabe1a367 PATCH
Refactored DTOs to use AutoMapper instead of manual mapping and made some additional improvements and fixes.
Added : GetAllSurveys&DeleteUser.
2025-02-07 06:40:57 -08:00

16 lines
304 B
C#

using AutoMapper;
using survey_beta.DTOs.Default;
using survey_beta.DTOs.Response;
using survey_beta.Models;
namespace survey_beta.Mappers.Profiles
{
public class ChoiceProfile : Profile
{
public ChoiceProfile()
{
CreateMap<Choice, ChoiceDto>();
}
}
}