namespace adas_core.Domain.Models; /// /// Represents a chat message, typically used to encapsulate the content and metadata exchanged in a chat conversation. /// public class ChatMessage { public PatientLocation? LocationFrom { get; set; } public PatientLocation? LocationTo { get; set; } public DateTime? MessageTime { get; set; } public string? Message { get; set; } }