using Newtonsoft.Json; namespace ScoreboardApi.Settings { public class ApplicationSettings { [JsonProperty(Required = Required.Always)] public List AllowedApiKeys { get; set; } = new(); } }