Administrator
2021-04-26 8fd2a21f9f38c3ad4294d36b4d412a1aafcab448
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; }
    }
}