forked from sim0n00ps/OF-DL
12 lines
308 B
C#
12 lines
308 B
C#
using UserEntities = OF_DL.Models.Entities.Users;
|
|
|
|
namespace OF_DL.Services;
|
|
|
|
public interface ICajetanApiService : IApiService
|
|
{
|
|
Task<UserEntities.UserInfo?> GetDetailedUserInfo(string endpoint);
|
|
|
|
Task<HashSet<long>> GetUsersWithUnreadMessagesAsync();
|
|
Task MarkAsUnreadAsync(string endpoint);
|
|
}
|