mirror of
https://github.com/ckaczor/ChrisKaczor.MinifluxClient.git
synced 2026-02-16 10:58:35 -05:00
Initial commit
This commit is contained in:
14
Library/Models/EntriesResponse.cs
Normal file
14
Library/Models/EntriesResponse.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user