mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-06 11:55:31 +08:00
13 lines
287 B
C#
13 lines
287 B
C#
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterGenshinImpact.Service.Notifier.Interface;
|
|
|
|
public interface INotifier
|
|
{
|
|
string Name { get; }
|
|
|
|
// TODO: replace HttpContent with another data structure
|
|
Task SendNotificationAsync(HttpContent content);
|
|
}
|