Skip to content

Instantly share code, notes, and snippets.

View vanderlei-dev's full-sized avatar

Vanderlei Morais vanderlei-dev

View GitHub Profile
using System.Text.Json.Serialization;
using RestSharp.Authenticators;
namespace RestSharp.Tests.External.Twitter;
public interface ITwitterClient
{
Task<TwitterUser> GetUser(string user);
}