using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace AMESCoreStudio.Web { public class AppSetting { /// /// MVC網站訪問地址 /// public string Urls { get; set; } /// /// WebApi網站訪問地址 /// public string ApiUrl { get; set; } /// /// 倉庫位置 /// public string Location { get; set; } /// /// /// public string PTD101Key { get; set; } /// /// FQC014上傳檔案大小限制 以MB為單位 /// public int FQC014FileSize { get; set; } public static AppSetting Setting { get; set; } = new AppSetting(); } }