This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/src/BirdsiteLive.Twitter/Models/TwitterUser.cs

17 lines
590 B
C#

namespace BirdsiteLive.Twitter.Models
{
public class TwitterUser
{
public long Id { get; set; }
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; }
public string Acct { get; set; }
public string ProfileBannerURL { get; set; }
public bool Protected { get; set; }
public bool Sensitive { get; set; }
public bool Verified { get; set; }
}
}