cloutier--bird.makeup/src/BirdsiteLive/Models/DisplayTweet.cs

10 lines
259 B
C#
Raw Normal View History

2023-02-04 12:55:00 -05:00
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; }
}
}