Files
parr_api/PARR_API/Settings/CorsSettings.cs
Mikhail Kuznetsov 868af2dd0e dal + other
2023-05-17 16:30:13 +10:00

10 lines
243 B
C#

namespace PARR.API.Settings
{
public class CorsSettings
{
public string AllowedHosts { get; set; } = string.Empty;
public string[] AllowHostsArray => AllowedHosts.Split(';').Select(t => t.Trim()).ToArray();
}
}