using System; namespace Kurs.Platform.VirtualClassrooms; public class ParticipantDto { public Guid Id { get; set; } public Guid SessionId { get; set; } public Guid UserId { get; set; } public string UserName { get; set; } public string UserEmail { get; set; } public bool IsTeacher { get; set; } public bool IsAudioMuted { get; set; } public bool IsVideoMuted { get; set; } public DateTime JoinTime { get; set; } }