Administrator
2021-04-13 717ac6186114fc158fffa46e3b6ab60dd70a48d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Bro.Common.PubSub
{
    /// <summary>
    /// 发布者
    /// </summary>
    public interface IPublisher
    {
        /// <summary>
        /// 发布的事件
        /// </summary>
        string PublishTag { get; set; }
 
        object PublishData { get; set; }
    }
}