mirror of
https://github.com/ckaczor/ChrisKaczor.MinifluxClient.git
synced 2026-01-31 01:25:40 -05:00
Initial commit
This commit is contained in:
13
Library/Requests/UpdateEntryRequest.cs
Normal file
13
Library/Requests/UpdateEntryRequest.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user