17 lines
No EOL
498 B
C#
17 lines
No EOL
498 B
C#
using System;
|
|
|
|
namespace Kurs.Platform.Classrooms;
|
|
|
|
public class ClassroomChatDto
|
|
{
|
|
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; }
|
|
public Guid? RecipientId { get; set; }
|
|
public string? RecipientName { get; set; }
|
|
public bool IsTeacher { get; set; }
|
|
public string MessageType { get; set; }
|
|
} |