10 lines
259 B
C#
10 lines
259 B
C#
|
namespace BirdsiteLive.Models
|
|||
|
{
|
|||
|
public class DisplayTweet
|
|||
|
{
|
|||
|
public string Text { get; set; }
|
|||
|
public string OgUrl { get; set; }
|
|||
|
public string UserProfileImage { get; set; }
|
|||
|
public string UserName { get; set; }
|
|||
|
}
|
|||
|
}
|