mirror of
https://github.com/NicolasConstant/BirdsiteLive
synced 2025-06-05 21:49:16 +02:00
11 lines
288 B
C#
11 lines
288 B
C#
namespace BirdsiteLive.DAL.Models
|
|
{
|
|
public class SyncTwitterUser
|
|
{
|
|
public int Id { get; set; }
|
|
public string Acct { get; set; }
|
|
|
|
public long LastTweetPostedId { get; set; }
|
|
public long LastTweetSynchronizedForAllFollowersId { get; set; }
|
|
}
|
|
} |