iotgateway/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/Cors.cs

19 lines
359 B
C#
Raw Normal View History

2021-12-14 06:10:44 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace WalkingTec.Mvvm.Core
{
public class Cors
{
public bool EnableAll { get; set; }
public List<CorsPolicy> Policy { get; set; }
}
public class CorsPolicy
{
public string Name { get; set; }
public string Domain { get; set; }
}
}