cloutier--bird.makeup/src/DataAccessLayers/BirdsiteLive.DAL/Models/Follower.cs

17 lines
463 B
C#
Raw Normal View History

2020-07-06 00:56:26 -04:00
using System.Collections.Generic;
namespace BirdsiteLive.DAL.Models
2020-07-05 20:22:34 -04:00
{
public class Follower
{
public int Id { get; set; }
2020-07-07 21:03:20 -04:00
public List<int> Followings { get; set; }
2020-07-06 00:56:26 -04:00
public Dictionary<int, long> FollowingsSyncStatus { get; set; }
2020-07-05 20:22:34 -04:00
public string Acct { get; set; }
public string Host { get; set; }
2020-08-10 20:04:12 -04:00
public string InboxRoute { get; set; }
public string SharedInboxRoute { get; set; }
2020-07-05 20:22:34 -04:00
}
}