10 lines
243 B
C#
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();
|
|
}
|
|
}
|