mirror of
https://github.com/ckaczor/ChrisKaczor.FeverClient.git
synced 2026-01-14 01:25:38 -05:00
Initial commit
This commit is contained in:
14
Models/FeedGroup.cs
Normal file
14
Models/FeedGroup.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user