mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
11 lines
No EOL
348 B
C#
11 lines
No EOL
348 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Ombi.Api.Notifications.Models;
|
|
|
|
namespace Ombi.Api.Notifications
|
|
{
|
|
public interface IOneSignalApi
|
|
{
|
|
Task<OneSignalNotificationResponse> PushNotification(List<string> playerIds, string message, bool isAdminNotification, int requestId, int requestType);
|
|
}
|
|
} |