mirror of
https://github.com/spacebarchat/server.git
synced 2026-03-30 18:15:41 +00:00
14 lines
379 B
C#
14 lines
379 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Spacebar.Models.Gateway;
|
|
|
|
public class BulkMessageDeleteResponse {
|
|
[JsonPropertyName("guild_id")]
|
|
public string? GuildId { get; set; }
|
|
|
|
[JsonPropertyName("channel_id")]
|
|
public required string ChannelId { get; set; }
|
|
|
|
[JsonPropertyName("ids")]
|
|
public required List<string> MessageIds { get; set; }
|
|
} |