8 lines
170 B
C#
8 lines
170 B
C#
|
namespace DevOpsProject.CommunicationControl.Logic.Services.Interfaces
|
|||
|
{
|
|||
|
public interface IPublishService
|
|||
|
{
|
|||
|
Task Publish<T>(T message);
|
|||
|
}
|
|||
|
}
|