forked from AcaMate/AcaMate_API
8 lines
191 B
C#
8 lines
191 B
C#
using Back.Program.Models.Entities;
|
|
|
|
namespace Back.Program.Services.V1.Interfaces;
|
|
|
|
public interface IPushService
|
|
{
|
|
Task SendPushNotificationAsync(string deviceToken, Payload payload);
|
|
} |