erp-platform/api/src/Erp.Platform.Application.Contracts/Classroom/ClassroomParticipantDto.cs

20 lines
537 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using System;
2025-08-26 05:59:39 +00:00
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.Classrooms;
2025-08-26 05:59:39 +00:00
2025-08-29 09:37:38 +00:00
public class ClassroomParticipantDto
2025-08-26 05:59:39 +00:00
{
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; }
2025-08-29 09:37:38 +00:00
public bool IsHandRaised { get; set; }
2025-08-31 15:19:28 +00:00
public bool IsKicked { get; set; }
2025-08-26 05:59:39 +00:00
public DateTime JoinTime { get; set; }
2025-08-30 12:05:50 +00:00
public bool IsActive { get; set; }
2025-08-26 05:59:39 +00:00
}
2025-11-11 19:49:52 +00:00