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

19 lines
462 B
C#
Raw Normal View History

2020-12-06 11:21:33 +01:00
using AutoMapper;
using SessionCompanion.Database.Tables;
using SessionCompanion.ViewModels.BackgroundViewModels;
using System;
using System.Collections.Generic;
using System.Text;
namespace SessionCompanion.Services.Profiles
{
public class BackgroundProfile : Profile
{
public BackgroundProfile()
{
CreateMap<BackgroundViewModel, Background>();
CreateMap<Background, BackgroundViewModel>();
}
}
}