erp-platform/api/src/Kurs.Platform.Application.Contracts/VirtualClass/ParticipantDto.cs

17 lines
497 B
C#
Raw Normal View History

2025-08-25 18:01:57 +00:00
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; }
}