refactor: Move JoinChannelResult to the correct position in ChatDtos.cs

This commit is contained in:
Stone_Red
2026-02-24 21:45:33 +01:00
parent 24a5bdb9a1
commit b0adb55b8f
+2 -2
View File
@@ -15,8 +15,6 @@ public record MessageDto(
long? AttachmentFileSize = null,
List<EmbedDto>? Embeds = null);
public record JoinChannelResult(bool Success, List<MessageDto> 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<MessageDto> History, string? Error = null);
public record EmbedDto(
string? SiteName,
string? Title,