Files
server/src/Infrastructure.EntityFramework/Models/Installation.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
358 B
C#
Raw Normal View History

using AutoMapper;
namespace Bit.Infrastructure.EntityFramework.Models
{
public class Installation : Core.Entities.Installation
{
}
public class InstallationMapperProfile : Profile
{
public InstallationMapperProfile()
{
CreateMap<Core.Entities.Installation, Installation>().ReverseMap();
}
}
}