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