mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-08 00:24:12 +08:00
13 lines
274 B
C#
13 lines
274 B
C#
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using BetterGenshinImpact.Service.Notification.Model;
|
|
|
|
namespace BetterGenshinImpact.Service.Notifier.Interface;
|
|
|
|
public interface INotifier
|
|
{
|
|
string Name { get; }
|
|
|
|
Task SendAsync(BaseNotificationData data);
|
|
}
|