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

13 lines
358 B
C#
Raw Normal View History

2020-11-18 22:48:53 -05:00
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; }
}
}