15 lines
415 B
C#
15 lines
415 B
C#
namespace adas_core.Domain.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a chat message, typically used to encapsulate the content and metadata exchanged in a chat conversation.
|
|
/// </summary>
|
|
public class ChatMessage
|
|
{
|
|
public PatientLocation? LocationFrom { get; set; }
|
|
|
|
public PatientLocation? LocationTo { get; set; }
|
|
|
|
public DateTime? MessageTime { get; set; }
|
|
|
|
public string? Message { get; set; }
|
|
} |