using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.Events
{
///
/// 通用事件,可实现插件之间的数据传输,自己定义规则
///
public class SharedEvents : BaseEvents
{
///
/// 参数
///
public Dictionary Shareds { get; private set; }
///
/// 构造方法
///
/// 参数
public SharedEvents(Dictionary Shareds)
{
this.Shareds = Shareds;
}
///
/// 构造方法
///
public SharedEvents()
{
}
}
}