22 lines
563 B
C#
22 lines
563 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using AutoMapper;
|
|
using xAiModels.Models.Dtos;
|
|
using xAiModels.Models.Entities;
|
|
|
|
namespace xAiModels.Configurations.Entities
|
|
{
|
|
public class XAiConversationMappingAction : IMappingAction<XAiConversation, XAiConversationDto>
|
|
{
|
|
public void Process(
|
|
XAiConversation source,
|
|
XAiConversationDto destination,
|
|
ResolutionContext context
|
|
)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |