9 lines
205 B
C#
9 lines
205 B
C#
namespace Shared.Models.Settings
|
|
{
|
|
public class InternalApiSettings
|
|
{
|
|
public string ApiKey { get; set; } = string.Empty;
|
|
public bool RequireApiKey { get; set; } = false;
|
|
}
|
|
}
|