Files
TaskHybrid/salesbook.Shared/Core/Interface/IIntegryNotificationRestClient.cs

8 lines
196 B
C#

using Microsoft.Extensions.Logging;
namespace salesbook.Shared.Core.Interface;
public interface IIntegryNotificationRestClient
{
Task Register(string fcmToken, ILogger? logger1 = null);
}