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.
28 lines
616 B
28 lines
616 B
using System.Runtime.Serialization;
|
|
|
|
namespace Sog.Log
|
|
{
|
|
public class BattleLogConfig
|
|
{
|
|
public string logname { get; set; }
|
|
|
|
/// <summary>
|
|
/// UserLog的等级
|
|
/// </summary>
|
|
public string loglevel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否log全部User的日志
|
|
/// </summary>
|
|
public bool userlogAll { get; set; }
|
|
|
|
/// <summary>
|
|
/// User配置数组
|
|
/// </summary>
|
|
public long[] userlogSome { get; set; }
|
|
|
|
public bool logByBattleId { get; set; }
|
|
|
|
public string logpath { get; set; }
|
|
}
|
|
}
|