diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-05-13 00:47:55 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-05-13 00:47:55 +1000 |
| commit | 532b46dfe288e31607f0362626d6b7b81b3c2948 (patch) | |
| tree | c27b4ee076642cb5dd97eb5fb788977a22d7d419 /HyperBooru.cs | |
| parent | 477c6c7a4f2ccb2123a89dce1cc51db2dc643833 (diff) | |
v0.16av0.16a
Diffstat (limited to 'HyperBooru.cs')
| -rw-r--r-- | HyperBooru.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/HyperBooru.cs b/HyperBooru.cs index 4c41d96..b07351d 100644 --- a/HyperBooru.cs +++ b/HyperBooru.cs @@ -7,6 +7,7 @@ namespace HyperBooru.ApiClient; public sealed class HBSession : IDisposable { public Media Media { get; private init; } public Tag Tag { get; private init; } + public Feed Feed { get; private init; } public User User { get; private init; } public Uri BaseUri { get; private init; } @@ -36,6 +37,7 @@ public sealed class HBSession : IDisposable { Media = new(this); Tag = new(this); + Feed = new(this); User = new(this); } |
