session-companion/SessionCompanion/SessionCompanion.Services/Profiles/CharacterSpellSlotsProfile.cs

15 lines
395 B
C#

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