ChatCheap/ChatServerSpace/Models/ChatResponse.cs
2025-05-20 21:51:05 -03:00

9 lines
188 B
C#

namespace ChatServerSpace.Models
{
public class ChatResponse
{
public required string SessionId { get; set; }
public required string Response { get; set; }
}
}