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.Twitter/Models/ApiStatistics.cs
2021-01-13 20:04:21 -05:00

18 lines
704 B
C#

namespace BirdsiteLive.Twitter.Models
{
public class ApiStatistics
{
public int UserCallsCountMin { get; set; }
public int UserCallsCountAvg { get; set; }
public int UserCallsCountMax { get; set; }
public int UserCallsMax { get; set; }
public int TweetCallsCountMin { get; set; }
public int TweetCallsCountAvg { get; set; }
public int TweetCallsCountMax { get; set; }
public int TweetCallsMax { get; set; }
public int TimelineCallsCountMin { get; set; }
public int TimelineCallsCountAvg { get; set; }
public int TimelineCallsCountMax { get; set; }
public int TimelineCallsMax { get; set; }
}
}