mirror of
https://github.com/ckaczor/ChrisKaczor.MinifluxClient.git
synced 2026-01-13 17:22:25 -05:00
14 lines
323 B
C#
14 lines
323 B
C#
using JetBrains.Annotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace ChrisKaczor.MinifluxClient.Models;
|
|
|
|
[PublicAPI]
|
|
public class EntriesResponse
|
|
{
|
|
[JsonPropertyName("total")]
|
|
public required int Total { get; set; }
|
|
|
|
[JsonPropertyName("entries")]
|
|
public required List<Entry> Entries { get; set; }
|
|
} |