BirdsiteLive/src/DataAccessLayers/BirdsiteLive.DAL/Models/SyncTwitterUser.cs

22 lines
540 B
C#
Raw Normal View History

2021-01-23 02:18:42 +01:00
using System;
namespace BirdsiteLive.DAL.Models
2020-07-06 02:22:34 +02:00
{
public class SyncTwitterUser
{
public int Id { get; set; }
public string Acct { get; set; }
public long LastTweetPostedId { get; set; }
public long LastTweetSynchronizedForAllFollowersId { get; set; }
2021-01-23 02:18:42 +01:00
public DateTime LastSync { get; set; }
2022-11-04 01:02:37 +01:00
public int FetchingErrorCount { get; set; }
public string MovedTo { get; set; }
public string MovedToAcct { get; set; }
2022-12-14 04:55:22 +01:00
2022-12-28 05:09:25 +01:00
public bool Deleted { get; set; }
2020-07-06 02:22:34 +02:00
}
}