Record Class ConversationEvent

java.lang.Object
java.lang.Record
com.marginallyclever.communications.application.ConversationEvent
Record Components:
whoSpoke - the name of the person who spoke
whatWasSaid - what was said

public record ConversationEvent(String whoSpoke, String whatWasSaid) extends Record
ConversationEvent is a simple record to hold a conversation event.