Scoreboard/ScoreboardApi/Settings/ApplicationSettings.cs
2025-01-08 09:39:14 +00:00

10 lines
235 B
C#

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