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.
35 lines
950 B
35 lines
950 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoreAgent.ProtocolClient.HandlerEventArgs
|
|
{
|
|
/// <summary>
|
|
/// 日志获取ID变化事件参数 - 改进版
|
|
/// </summary>
|
|
public class LogGetIdChangedEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// 旧的日志获取ID
|
|
/// </summary>
|
|
public long OldLogGetId { get; }
|
|
|
|
/// <summary>
|
|
/// 新的日志获取ID
|
|
/// </summary>
|
|
public long NewLogGetId { get; }
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="oldLogGetId">旧的日志获取ID</param>
|
|
/// <param name="newLogGetId">新的日志获取ID</param>
|
|
public LogGetIdChangedEventArgs(long oldLogGetId, long newLogGetId)
|
|
{
|
|
OldLogGetId = oldLogGetId;
|
|
NewLogGetId = newLogGetId;
|
|
}
|
|
}
|
|
}
|
|
|