8 lines
201 B
C#
8 lines
201 B
C#
namespace Api.Models.Settings;
|
|
|
|
public sealed class RagApiSettings
|
|
{
|
|
public string BaseUrl { get; set; } = "http://localhost:8081";
|
|
public string InternalApiKey { get; set; } = string.Empty;
|
|
}
|