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/BirdsiteLive/Models/StatisticsModels/Statistics.cs
2021-01-12 23:53:23 -05:00

11 lines
288 B
C#

using BirdsiteLive.Twitter.Models;
namespace BirdsiteLive.Models.StatisticsModels
{
public class Statistics
{
public int FollowersCount { get; set; }
public int TwitterUserCount { get; set; }
public ApiStatistics TwitterStatistics { get; set; }
}
}