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