sozsoft-platform/api/src/Sozsoft.Platform.Application/Videoroom/VideoroomAutoMapperProfile.cs
Sedat ÖZTÜRK bdc7f744aa Video Rooms
2026-05-08 08:34:29 +03:00

16 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>();
}
}