17 lines
300 B
C#
17 lines
300 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CloudBuilder.Core.DependencyInjection.EventBuses
|
|
{
|
|
/// <summary>
|
|
/// 定义事件发布者
|
|
/// </summary>
|
|
public interface IEventPublisher
|
|
{
|
|
|
|
}
|
|
}
|