using AutoMapper; using SessionCompanion.Database.Tables; using SessionCompanion.ViewModels.CharacterSpellSlotsViewModels; namespace SessionCompanion.Services.Profiles { public class CharacterSpellSlotsProfile : Profile { public CharacterSpellSlotsProfile() { CreateMap().ReverseMap(); } } }