public Task <bool> IsMutedAsync(long userId, long targetId) { return(_mutes.ContainsAsync(userId, targetId)); }
public Task <bool> IsNoRetweetsAsync(long userId, long targetId) { return(_noRetweets.ContainsAsync(userId, targetId)); }
public Task <bool> IsFollowerAsync(long userId, long targetId) { return(_followers.ContainsAsync(userId, targetId)); }
public Task <bool> IsBlockingAsync(long userId, long targetId) { return(_blockings.ContainsAsync(userId, targetId)); }
public async Task <bool> IsFollowingAsync(long userId, long targetId) { return(await _followings.ContainsAsync(userId, targetId)); }