using System; namespace Erp.Platform.Classrooms; public class ClassroomParticipantDto { public Guid Id { get; set; } public Guid SessionId { get; set; } public Guid UserId { get; set; } public string UserName { get; set; } public bool IsTeacher { get; set; } public bool IsAudioMuted { get; set; } public bool IsVideoMuted { get; set; } public bool IsHandRaised { get; set; } public bool IsKicked { get; set; } public DateTime JoinTime { get; set; } public bool IsActive { get; set; } }