mirror of
https://github.com/AlexMacocian/ServerManagementUtils.git
synced 2026-07-15 15:19:58 +00:00
8 lines
182 B
C#
8 lines
182 B
C#
namespace Robin.Services.Publishing;
|
|
|
|
public interface IPublishingService
|
|
{
|
|
Task<bool> PublishAsync<T>(T item, CancellationToken cancellationToken)
|
|
where T : class;
|
|
}
|