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/Models/DisplayTwitterUser.cs

13 lines
358 B
C#

namespace BirdsiteLive.Models
{
public class DisplayTwitterUser
{
public string Name { get; set; }
public string Description { get; set; }
public string Acct { get; set; }
public string Url { get; set; }
public string ProfileImageUrl { get; set; }
public string InstanceHandle { get; set; }
}
}