Files
TaskHybrid/salesbook.Shared/Core/Interface/IntegryApi/IIntegryRegisterNotificationRestClient.cs
2025-09-11 16:06:19 +02:00

8 lines
215 B
C#

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