mirror of
https://github.com/ckaczor/ChrisKaczor.MinifluxClient.git
synced 2026-02-16 18:46:52 -05:00
Initial commit
This commit is contained in:
17
Library/Models/Icon.cs
Normal file
17
Library/Models/Icon.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using JetBrains.Annotations;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ChrisKaczor.MinifluxClient.Models;
|
||||
|
||||
[PublicAPI]
|
||||
public class Icon
|
||||
{
|
||||
[JsonPropertyName("feed_id")]
|
||||
public required long FeedId { get; set; }
|
||||
|
||||
[JsonPropertyName("icon_id")]
|
||||
public required long IconId { get; set; }
|
||||
|
||||
[JsonPropertyName("external_icon_id")]
|
||||
public required string ExternalIconId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user