8 lines
177 B
C#
8 lines
177 B
C#
namespace Api.Settings;
|
|
|
|
public sealed class InternalApiSettings
|
|
{
|
|
public string ApiKey { get; set; } = string.Empty;
|
|
public bool RequireApiKey { get; set; } = false;
|
|
}
|