add: 基础的聊天对话框

This commit is contained in:
2023-10-07 18:55:22 +08:00
parent e2419a1ebd
commit 6bf583151c
10 changed files with 178 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
namespace Frontend.Models;
public class ChatMessage
{
public required string Sender { get; init; }
public required string Text { get; init; }
public required bool Left { get; init; }
}