예제 #1
0
        public async Task SetFollowersAsync(long userId)
        {
            var follower = await TwitterUtil.GetUserFollowersAsync(this.account.TokensData, userId, this.cursor);

            this.userId = userId;
            this.cursor = follower.NextCursor;

            SetUserList(follower.ToList());
            this.isLoading = false;
        }