mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
15 lines
347 B
C#
15 lines
347 B
C#
using AutoMapper;
|
|
using LiveGameFeed.Models;
|
|
|
|
namespace LiveGameFeed.Core.Mappings
|
|
{
|
|
public class DomainToViewModelMappingProfile : Profile
|
|
{
|
|
protected override void Configure()
|
|
{
|
|
Mapper.CreateMap<Match, MatchViewModel>();
|
|
Mapper.CreateMap<Feed, FeedViewModel>();
|
|
}
|
|
}
|
|
}
|