SharpRSS/SharpSyndicationApi/Models/ContinuationToken.cs
2023-07-16 20:10:02 +02:00

16 lines
334 B
C#

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
}
}