コード例 #1
0
 public Task <IEnumerable <long> > GetMutesAsync(long userId)
 {
     return(_mutes.GetUsersAsync(userId));
 }
コード例 #2
0
 public Task <IEnumerable <long> > GetBlockingsAsync(long userId)
 {
     return(_blockings.GetUsersAsync(userId));
 }
コード例 #3
0
 public Task <IEnumerable <long> > GetNoRetweetsAsync(long userId)
 {
     return(_noRetweets.GetUsersAsync(userId));
 }
コード例 #4
0
 public Task <IEnumerable <long> > GetFollowersAsync(long userId)
 {
     return(_followers.GetUsersAsync(userId));
 }