update:docker compose 更新

queries构造函数修改
配置json更新
This commit is contained in:
2021-02-26 10:24:30 +08:00
parent 67dc2d5b4e
commit 00910838fe
11 changed files with 63 additions and 17 deletions

View File

@@ -0,0 +1,20 @@
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; }
}
}