14 lines
No EOL
402 B
C#
14 lines
No EOL
402 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 bool Protected { get; set; }
|
|
|
|
public string InstanceHandle { get; set; }
|
|
}
|
|
} |