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

14 lines
402 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; }
2021-01-28 18:47:45 -05:00
public bool Protected { get; set; }
2020-11-18 22:48:53 -05:00
public string InstanceHandle { get; set; }
}
}