From b0adb55b8f032c51979ab7ba231f8cb610f9acaf Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Tue, 24 Feb 2026 20:14:49 +0100 Subject: [PATCH] refactor: Move JoinChannelResult to the correct position in ChatDtos.cs --- src/EchoHub.Core/DTOs/ChatDtos.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EchoHub.Core/DTOs/ChatDtos.cs b/src/EchoHub.Core/DTOs/ChatDtos.cs index 6a73e4d..3a7e624 100644 --- a/src/EchoHub.Core/DTOs/ChatDtos.cs +++ b/src/EchoHub.Core/DTOs/ChatDtos.cs @@ -15,8 +15,6 @@ public record MessageDto( long? AttachmentFileSize = null, List? Embeds = null); -public record JoinChannelResult(bool Success, List History, string? Error = null); - public record ChannelDto( Guid Id, string Name, @@ -41,6 +39,8 @@ public record UpdateTopicRequest(string? Topic); public record SendUrlRequest(string Url); +public record JoinChannelResult(bool Success, List History, string? Error = null); + public record EmbedDto( string? SiteName, string? Title,