Skip to content

Instantly share code, notes, and snippets.

@jasongaylord
Created November 6, 2018 03:07
Show Gist options
  • Save jasongaylord/6462ef15f0db4cfae6f284ebad41cb9b to your computer and use it in GitHub Desktop.
Save jasongaylord/6462ef15f0db4cfae6f284ebad41cb9b to your computer and use it in GitHub Desktop.
public class TweetRaw
{
public string id_str { get; set; }
public string text { get; set; }
public string created_at { get; set; }
public string in_reply_to_screen_name { get; set; }
public UserRaw user { get; set; }
}
public class UserRaw
{
public string id_str { get; set; }
public string profile_image_url { get; set; }
public string screen_name { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment