You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
532 B
25 lines
532 B
1 month ago
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Sog.Log
|
||
|
{
|
||
|
public class UserLogConfig
|
||
|
{
|
||
|
public string userlogname { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// UserLog的等级
|
||
|
/// </summary>
|
||
|
public string userloglevel { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否log全部User的日志
|
||
|
/// </summary>
|
||
|
public bool userlogAll { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// User配置数组
|
||
|
/// </summary>
|
||
|
public long[] userlogSome { get; set; }
|
||
|
}
|
||
|
}
|