17 lines
436 B
C#
17 lines
436 B
C#
|
|
using AutoMapper;
|
|||
|
|
using Sozsoft.Platform.Entities;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.VideoRooms;
|
|||
|
|
|
|||
|
|
public class VideoroomAutoMapperProfile : Profile
|
|||
|
|
{
|
|||
|
|
public VideoroomAutoMapperProfile()
|
|||
|
|
{
|
|||
|
|
CreateMap<Videoroom, VideoroomDto>();
|
|||
|
|
CreateMap<VideoroomAttandance, VideoroomAttendanceDto>();
|
|||
|
|
CreateMap<VideoroomParticipant, VideoroomParticipantDto>();
|
|||
|
|
CreateMap<VideoroomChat, VideoroomChatDto>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|