mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 08:36:11 +02:00
refactor: Move JoinChannelResult to the correct position in ChatDtos.cs
This commit is contained in:
@@ -15,8 +15,6 @@ public record MessageDto(
|
|||||||
long? AttachmentFileSize = null,
|
long? AttachmentFileSize = null,
|
||||||
List<EmbedDto>? Embeds = null);
|
List<EmbedDto>? Embeds = null);
|
||||||
|
|
||||||
public record JoinChannelResult(bool Success, List<MessageDto> History, string? Error = null);
|
|
||||||
|
|
||||||
public record ChannelDto(
|
public record ChannelDto(
|
||||||
Guid Id,
|
Guid Id,
|
||||||
string Name,
|
string Name,
|
||||||
@@ -41,6 +39,8 @@ public record UpdateTopicRequest(string? Topic);
|
|||||||
|
|
||||||
public record SendUrlRequest(string Url);
|
public record SendUrlRequest(string Url);
|
||||||
|
|
||||||
|
public record JoinChannelResult(bool Success, List<MessageDto> History, string? Error = null);
|
||||||
|
|
||||||
public record EmbedDto(
|
public record EmbedDto(
|
||||||
string? SiteName,
|
string? SiteName,
|
||||||
string? Title,
|
string? Title,
|
||||||
|
|||||||
Reference in New Issue
Block a user