13 lines
358 B
C#
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; }
|
|||
|
}
|
|||
|
}
|