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

16 lines
404 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-06 00:56:26 -04:00
public int[] Followings { get; set; }
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-07-07 18:39:35 -04:00
public string InboxUrl { get; set; }
2020-07-05 20:22:34 -04:00
}
}