17 lines
310 B
C#
17 lines
310 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WCS.BLL.Config
|
|
{
|
|
/// <summary>
|
|
/// json配置文件
|
|
/// </summary>
|
|
public class JsConfig
|
|
{
|
|
public List<string> ModuleCodePatterns { get; set; }
|
|
}
|
|
}
|