cloutier--bird.makeup/src/BirdsiteLive/Models/DisplayTweet.cs
Vincent Cloutier 9c451c0969 new Tweet page
2023-02-04 12:55:00 -05:00

10 lines
No EOL
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; }
}
}