erp-platform/api/src/Kurs.Platform.Application.Contracts/Classroom/ClassParticipantDto.cs

17 lines
451 B
C#
Raw Normal View History

2025-08-26 05:59:39 +00:00
using System;
namespace Kurs.Platform.Classrooms;
public class ClassParticipantDto
{
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; }
}