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

11 lines
280 B
C#

using salesbook.Shared.Core.Entity;
namespace salesbook.Shared.Core.Interface.IntegryApi;
public interface IIntegryNotificationRestClient
{
Task<List<WtbNotification>> Get();
Task<WtbNotification> MarkAsRead(long id);
Task Delete(long id);
Task DeleteAll();
}