Files
better-genshin-impact/BetterGenshinImpact/Service/Notifier/Interface/INotifier.cs
2025-02-03 15:02:25 +08:00

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);
}