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