CorsStudy/CorsServer/CorsServer.WebApi31/ApiConst.cs

15 lines
307 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CorsServer.WebApi31
{
public class ApplicationConst
{
public const string DefaultPolicyName = "AllowAll";
public const string CorsConfigOptionName = "CorsOption";
}
}