Correction de l'envoi GCM depuis multi device

This commit is contained in:
Paul Schneider 2016-05-31 15:59:29 +02:00
commit 8343abd2b4
5 changed files with 15 additions and 25 deletions

View file

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Yavsc.Models.Google.Messaging;
using Yavsc.Models.Messaging;
@ -7,6 +8,6 @@ namespace Yavsc.Services
{
public interface IGoogleCloudMessageSender
{
Task<MessageWithPayloadResponse> NotifyAsync(GoogleAuthSettings googlesettings, string registrationId, YaEvent ev);
Task<MessageWithPayloadResponse> NotifyAsync(GoogleAuthSettings googlesettings, IEnumerable<string> registrationId, YaEvent ev);
}
}