This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/src/DataAccessLayers/BirdsiteLive.DAL/Models/Follower.cs
2020-07-06 00:56:26 -04:00

15 lines
359 B
C#

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