9 lines
181 B
C#
9 lines
181 B
C#
namespace Backend.Configuration;
|
|
|
|
public sealed class FrontendOptions
|
|
{
|
|
public const string SectionName = "Frontend";
|
|
|
|
public string[] AllowedOrigins { get; init; } = [];
|
|
}
|