Skip to content

Instantly share code, notes, and snippets.

@ajtowf
Created February 13, 2014 21:48
Show Gist options
  • Save ajtowf/8984564 to your computer and use it in GitHub Desktop.
Save ajtowf/8984564 to your computer and use it in GitHub Desktop.
public interface IMetaWeblogClient
{
Task<Post> GetPostAsync(string postId);
Task<IEnumerable<Post>> GetRecentPostsAsync(int numberOfPosts);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment