Files
better-genshin-impact/BetterGenshinImpact/Service/Notifier/Interface/INotifier.cs
2024-03-30 13:57:02 -07:00

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