19 lines
373 B
C#
19 lines
373 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JinYuan.Models
|
||
|
|
{
|
||
|
|
public class ConstValue
|
||
|
|
{
|
||
|
|
#region 日志文件夹名称
|
||
|
|
/// <summary>
|
||
|
|
/// 操作日志存储
|
||
|
|
/// </summary>
|
||
|
|
public const string USER_LOG = "OperaLog";
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|