公告板
版本库
filestore
活动
搜索
登录
main
/
P066.Data
OPPO镜头检测数据分析
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
1.新增程序自动区分文件夹的上、下。
Administrator
2021-03-18
14c9a820cec697c024b2058ba1c63db2f5f84a5e
[P066.Data.git]
/
Bro.Comn
/
PubSub
/
IPublisher.cs
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; }
}
}