mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
16 lines
315 B
C#
16 lines
315 B
C#
using AutoMapper;
|
|
|
|
namespace LiveGameFeed.Mappings
|
|
{
|
|
public class AutoMapperConfiguration
|
|
{
|
|
public static void Configure()
|
|
{
|
|
Mapper.Initialize(x =>
|
|
{
|
|
x.AddProfile<DomainToViewModelMappingProfile>();
|
|
});
|
|
}
|
|
}
|
|
}
|