Files
TaskHybrid/salesbook.Shared/Core/Interface/IntegryApi/IIntegryNotificationRestClient.cs
2025-09-09 11:43:07 +02:00

8 lines
207 B
C#

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