2016-05-17 18:22:18 +02:00
|
|
|
|
2016-05-31 15:59:29 +02:00
|
|
|
using System.Collections.Generic;
|
2016-05-17 18:22:18 +02:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Yavsc.Models.Google.Messaging;
|
|
|
|
|
using Yavsc.Models.Messaging;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IGoogleCloudMessageSender
|
|
|
|
|
{
|
2016-09-17 03:36:34 +02:00
|
|
|
Task<MessageWithPayloadResponse> NotifyBookQueryAsync(GoogleAuthSettings googlesettings, IEnumerable<string> registrationId, BookQueryEvent ev);
|
2016-05-17 18:22:18 +02:00
|
|
|
}
|
|
|
|
|
}
|