3 changed files with 75 additions and 22 deletions
@ -0,0 +1,27 @@ |
|||||
|
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; }
|
||||
|
} |
||||
|
} |
Loading…
Reference in new issue