using Newtonsoft.Json; namespace Foxchat.Core.Models; public static class Guilds { public record Guild( string Id, string Name, IEnumerable OwnerIds, [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] IEnumerable? Channels ); }