Files
parr_api/PARR.API/Settings/CorsSettings.cs

10 lines
243 B
C#
Raw Normal View History

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();
}
}