mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
8 lines
184 B
C#
8 lines
184 B
C#
|
namespace SharpSyndicationApi.Models
|
||
|
{
|
||
|
public class ApiResponse <T>
|
||
|
{
|
||
|
public T RespsonseData { get; set; }
|
||
|
public string ContinuationToken { get; set; }
|
||
|
}
|
||
|
}
|