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