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

17 lines
498 B
C#
Raw Normal View History

2025-08-25 18:01:57 +00:00
using System;
2025-08-26 05:59:39 +00:00
namespace Kurs.Platform.Classrooms;
2025-08-25 18:01:57 +00:00
2025-08-29 09:37:38 +00:00
public class ClassroomChatDto
2025-08-25 18:01:57 +00:00
{
public Guid Id { get; set; }
public Guid SessionId { get; set; }
public Guid SenderId { get; set; }
public string SenderName { get; set; }
public string Message { get; set; }
public DateTime Timestamp { get; set; }
2025-08-29 09:37:38 +00:00
public Guid? RecipientId { get; set; }
public string? RecipientName { get; set; }
2025-08-25 18:01:57 +00:00
public bool IsTeacher { get; set; }
2025-08-29 09:37:38 +00:00
public string MessageType { get; set; }
2025-08-25 18:01:57 +00:00
}