using AutoMapper; using YABA.API.ViewModels; using YABA.Common.DTOs; using YABA.Common.DTOs.Tags; namespace YABA.API.Settings { public class AutoMapperProfile : Profile { public AutoMapperProfile() { CreateMap(); } } }