cloutier--bird.makeup/src/DataAccessLayers/BirdsiteLive.DAL/Models/Follower.cs
2020-08-10 20:04:12 -04:00

17 lines
No EOL
463 B
C#

using System.Collections.Generic;
namespace BirdsiteLive.DAL.Models
{
public class Follower
{
public int Id { get; set; }
public List<int> Followings { get; set; }
public Dictionary<int, long> FollowingsSyncStatus { get; set; }
public string Acct { get; set; }
public string Host { get; set; }
public string InboxRoute { get; set; }
public string SharedInboxRoute { get; set; }
}
}