Created
November 6, 2018 03:07
-
-
Save jasongaylord/6462ef15f0db4cfae6f284ebad41cb9b to your computer and use it in GitHub Desktop.
Part of the https://gist.github.com/jasongaylord/df33fe4cd4bc7d253a10c3cdccc41104#file-default-cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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