5 lines
202 B
C#
5 lines
202 B
C#
using TorchRemote.Models.Shared;
|
|
namespace TorchRemote.Models.Responses;
|
|
|
|
public record ChatMessageResponse(string AuthorName, ulong? Author, ChatChannel Channel, string Message) : ChatResponseBase;
|