You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
869 B

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