mirror of
https://github.com/ckaczor/ChrisKaczor.FeverClient.git
synced 2026-01-14 01:25:38 -05:00
14 lines
328 B
C#
14 lines
328 B
C#
using System.Text.Json.Serialization;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace ChrisKaczor.FeverClient.Models;
|
|
|
|
[PublicAPI]
|
|
public class FeedGroup
|
|
{
|
|
[JsonPropertyName("group_id")]
|
|
public required int GroupId { get; set; }
|
|
|
|
[JsonPropertyName("feed_ids")]
|
|
public required IEnumerable<int> FeedIds { get; set; }
|
|
} |