mirror of
https://github.com/spaytac/linkdingsync.git
synced 2026-01-21 16:54:45 +00:00
13 lines
371 B
C#
13 lines
371 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Entities.Wallabag
|
|
{
|
|
public class QueryLinks : Links
|
|
{
|
|
[JsonPropertyName("first")] public HttpLink? First { get; set; } = null;
|
|
|
|
[JsonPropertyName("last")] public HttpLink? Last { get; set; } = null;
|
|
|
|
[JsonPropertyName("next")] public HttpLink? Next { get; set; } = null;
|
|
}
|
|
} |