namespace OF_DL.Services; public interface ICajetanApiService : IApiService { new Task?> GetListUsers(string endpoint); Task GetDetailedUserInfoAsync(string endpoint); Task> GetUsersWithProgressAsync(string typeDisplay, string endpoint, string? typeParam, bool offsetByCount); Task> GetUsersWithUnreadMessagesAsync(); Task MarkAsUnreadAsync(string endpoint); Task SortBlockedAsync(string endpoint, string order = "recent", string direction = "desc"); }