21 lines
468 B
C#
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; }
|
|
}
|
|
}
|