10 lines
235 B
C#
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();
|
|
}
|
|
} |