2023-05-17 16:30:13 +10:00
|
|
|
|
namespace PARR.API.Settings
|
2023-05-17 16:00:50 +10:00
|
|
|
|
{
|
|
|
|
|
|
public class CorsSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public string AllowedHosts { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string[] AllowHostsArray => AllowedHosts.Split(';').Select(t => t.Trim()).ToArray();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|