14 lines
293 B
C#
14 lines
293 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Web;
|
||
|
|
namespace Mtxfw.shop
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Config 的摘要说明
|
||
|
|
/// </summary>
|
||
|
|
public class Config
|
||
|
|
{
|
||
|
|
public static string[] ImageSavePath = new string[] { "Files/Image/" };
|
||
|
|
}
|
||
|
|
}
|