mirror of
https://github.com/ckaczor/ChrisKaczor.MinifluxClient.git
synced 2026-01-14 01:25:40 -05:00
13 lines
366 B
C#
13 lines
366 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace ChrisKaczor.MinifluxClient.Requests;
|
|
|
|
public class UpdateEntryRequest
|
|
{
|
|
[JsonPropertyName("entry_ids")]
|
|
public required IEnumerable<long> EntryIds { get; set; }
|
|
|
|
[JsonPropertyName("status")]
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public required FeedEntryStatus Status { get; set; }
|
|
} |