using System.Collections.Generic; namespace AMESCoreStudio.Web.Code { /// <summary> /// 虛擬路徑 /// </summary> public class VirtualPathConfig { public List<PathContent> VirtualPath { get; set; } } public class PathContent { /// <summary> /// 真實路徑 /// </summary> public string RealPath { get; set; } /// <summary> /// 目錄名稱 /// </summary> public string RequestPath { get; set; } //public string Alias { get; set; } } }