Newsbot.Collector/Newsbot.Collector.Domain/Interfaces/IDiscordNotificationClient.cs

8 lines
180 B
C#
Raw Normal View History

2023-03-05 20:12:59 -08:00
using Newsbot.Collector.Domain.Models;
namespace Newsbot.Collector.Domain.Interfaces;
public interface IDiscordNotificatioClient
{
void SendMessage(DiscordMessage payload);
}