Files
qrcodeService/QRCodeService/Options/ServiceOption.cs
zhangqi 00910838fe update:docker compose 更新
queries构造函数修改
配置json更新
2021-02-26 10:24:30 +08:00

21 lines
468 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QRCodeService.Options
{
public class ServiceOption
{
/// <summary>
/// 二维码输出地址的基本路径
/// </summary>
public string BaseUrl { get; set; }
/// <summary>
/// 是否布置了反向代理
/// </summary>
public bool IsForwarded { get; set; }
}
}