BirdsiteLive/src/BirdsiteLive.Twitter/Models/TwitterUser.cs

11 lines
328 B
C#
Raw Normal View History

2020-03-22 06:29:51 +01:00
namespace BirdsiteLive.Twitter.Models
{
public class TwitterUser
{
public string Name { get; set; }
public string Description { get; set; }
public string Url { get; set; }
public string ProfileImageUrl { get; set; }
public string ProfileBackgroundImageUrl { get; set; }
}
}