forked from sim0n00ps/OF-DL
10 lines
399 B
C#
10 lines
399 B
C#
namespace OF_DL.Services;
|
|
|
|
public interface ICajetanApiService : IApiService
|
|
{
|
|
Task<UserEntities.UserInfo?> GetDetailedUserInfoAsync(string endpoint);
|
|
Task<Dictionary<string, long>> GetUsersWithProgressAsync(string typeDisplay, string endpoint, string? typeParam, bool offsetByCount);
|
|
Task<HashSet<long>> GetUsersWithUnreadMessagesAsync();
|
|
Task MarkAsUnreadAsync(string endpoint);
|
|
}
|