File: Models\ChatMessage.cs
Web Access
Project: src\playground\AWS\Frontend\Frontend.csproj (Frontend)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Frontend.Models;
 
public class ChatMessage
{
    public string? Message { get; set; }
 
    public string? Recipient { get; set; }
}