using MessagePack; using System.Text.Json.Serialization; using SVSim.EmulatedEntrypoint.Models.Dtos.Common.Guild; namespace SVSim.EmulatedEntrypoint.Models.Dtos.Guild; /// Response for POST /guild/search_guild. Flat list of guild details matching the filter. [MessagePackObject] public class GuildSearchGuildResponse { [JsonPropertyName("list"), Key("list")] public List List { get; set; } = new(); }