15 lines
325 B
C#
15 lines
325 B
C#
using AutoMapper;
|
|
using SessionCompanion.Database.Tables;
|
|
using SessionCompanion.ViewModels.ArmorViewModels;
|
|
|
|
namespace SessionCompanion.Services.Profiles
|
|
{
|
|
public class ArmorProfile : Profile
|
|
{
|
|
public ArmorProfile()
|
|
{
|
|
CreateMap<Armor, ArmorViewModel>().ReverseMap();
|
|
}
|
|
}
|
|
}
|