sozsoft-platform/api/src/Sozsoft.Platform.Application/Videoroom/VideoroomAutoMapperProfile.cs

17 lines
436 B
C#
Raw Normal View History

2026-05-08 05:34:29 +00:00
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>();
}
}