12 lines
379 B
C#
12 lines
379 B
C#
|
namespace BirdsiteLive.Twitter.Models
|
|||
|
{
|
|||
|
public class ApiStatistics
|
|||
|
{
|
|||
|
public int UserCallsCount { get; set; }
|
|||
|
public int UserCallsMax { get; set; }
|
|||
|
public int TweetCallsCount { get; set; }
|
|||
|
public int TweetCallsMax { get; set; }
|
|||
|
public int TimelineCallsCount { get; set; }
|
|||
|
public int TimelineCallsMax { get; set; }
|
|||
|
}
|
|||
|
}
|