mirror of
https://github.com/ckaczor/ChrisKaczor.MinifluxClient.git
synced 2026-01-13 17:22:25 -05:00
17 lines
408 B
C#
17 lines
408 B
C#
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; }
|
|
} |