Files
TorchRemote/TorchRemote.Models/Responses/ChatMessageResponse.cs
2022-07-21 21:57:27 +07:00

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;