SharpRSS/SharpSyndicationApi/Models/ContinuationToken.cs

16 lines
334 B
C#
Raw Normal View History

2023-07-16 20:10:02 +02:00
namespace SharpSyndicationApi.Models
{
public class ContinuationToken
{
public int TakeAmount { get; set; } = 30;
public int TotalTaken { get; set; }
public ApiCallType ApiCall { get; set; }
}
public enum ApiCallType
{
Category,
Syndication,
SyndicationItem
}
}