using System; using System.Collections.Generic; #nullable disable namespace ChaosBot.Models { public partial class ServerConfigurationFlag { public string Key { get; set; } public string SerializedValue { get; set; } public long? GuildId { get; set; } } }