Files
server/extra/admin-api/Models/Spacebar.Models.Gateway/LazyRequest.cs
2026-02-06 05:21:31 +01:00

24 lines
580 B
C#

using System.Text.Json.Serialization;
namespace Spacebar.Models.Gateway;
public class LazyRequest
{
[JsonPropertyName("guild_id")]
public string GuildId { get; set; }
[JsonPropertyName("channels")]
public Dictionary<string, List<List<int>>> Channels { get; set; }
[JsonPropertyName("members")]
public bool Members { get; set; }
[JsonPropertyName("threads")]
public bool Threads { get; set; }
[JsonPropertyName("activities")]
public bool Activities { get; set; }
[JsonPropertyName("typing")]
public bool Typing { get; set; }
}