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