13 lines
324 B
C#
13 lines
324 B
C#
|
namespace BirdsiteLive.DAL.Models
|
|||
|
{
|
|||
|
public class Follower
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public int FollowingAccountId { get; set; }
|
|||
|
|
|||
|
public string Acct { get; set; }
|
|||
|
public string Host { get; set; }
|
|||
|
|
|||
|
public long LastTweetSynchronizedId { get; set; }
|
|||
|
}
|
|||
|
}
|